时间:2021-05-23
常数为正
等同于
常数为负数
常数为小数(直接舍去小数部分)
日期1>日期2
日期1<日期2
'+'是连接符号
'+'是加符号
时间转换:
select convert(varchar(12),getdate(),101) 07/16/2010select convert(varchar(12),getdate(),102) 2010.07.16select convert(varchar(12),getdate(),103) 16/07/2010select convert(varchar(12),getdate(),104) 16.07.2010select convert(varchar(12),getdate(),105) 16-07-2010select convert(varchar(12),getdate(),106) 16 Jul 2010select convert(varchar(12),getdate(),107) Jul 16, 2010select convert(varchar(12),getdate(),108) 11:58:49select convert(varchar(12),getdate(),109) Jul 16 2010select convert(varchar(12),getdate(),110) 07-16-2010select convert(varchar(12),getdate(),111) 2010/07/16select convert(varchar(12),getdate(),112) 20100716select convert(varchar(12),getdate(),113) 16 Jul 2010select convert(varchar(12),getdate(),114) 11:59:35:930当月第一天
select dateadd(mm,datediff(mm,0,getdate()),0)本周星期一
select dateadd(wk,datediff(wk,0,getdate()),0)本年第一天
select dateadd(yyyy,datediff(yyyy,0,getdate()),0)--本月最后1天
select dateadd(ms,-3,dateadd(mm,datediff(mm,0,getdate())+1,0))--本周最后一天,注意sql精确到3毫秒。。。
select dateadd(ms,-3,dateadd(wk,datediff(wk,0,getDate())+1,0));本月的第一个星期一
select dateadd(wk,dateDiff(wk,0,dateadd(dd,6-datepart(day,getdate()),getdate())),0);到此这篇关于SQL SERVER中常用日期函数的具体使用的文章就介绍到这了,更多相关SQL SERVER常用日期函数内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
表格中常常会涉及到与日期有关的项目。通过一些日期相关函数的巧妙组合使用,可轻松满足日期计算中的常见需求。下面我们通过5个具体实例,带大家玩转日期相关函数。软件名
一.Access常用内置SQL函数---日期时间函数 1.CDate 说明:将字符串转化成为日期 举例:selectCDate("2008/4/5")
本文主要是总结一些常用的在实际运用中常用的一些mysql时间日期以及转换的函数1.now():返回当前日期和时间selectnow();//2018-04-21
php中常通过下面的代码,得到判定日期的sql查询语句复制代码代码如下:$now=time();//获取当期的日期$sql="select*from`team`
本文实例讲述了MySQL流程函数常见用法。分享给大家供大家参考,具体如下:流程函数是MySQL相对常用的一类函数,用户可以使用这类函数在一个SQL语句中实现条件