首页 > 代码库 > SQL Server DATEDIFF() 函数

SQL Server DATEDIFF() 函数

定义和用法

DATEDIFF() 函数返回两个日期之间的天数。

 

语法

DATEDIFF(datepart,startdate,enddate)

 datepart 参数可以是下列的值:

datepart 	缩写 年 	        yy, yyyy 季度 	        qq, q 月 	        mm, m 年中的日 	dy, y 日 	        dd, d 周 	        wk, ww 星期 	        dw, w 小时 	        hh 分钟 	        mi, n 秒 	        ss, s 毫秒 	        ms 微妙 	        mcs 纳秒 	        ns

 

例子
declare @q datetimeset @q = getdate()select ID,U_Name,U_Sex,U_Age,U_Address from test1 where U_Name like ‘我%‘select [like执行花费时间(毫秒)]=datediff(ms,@q,getdate())

 查询结果

 

 

 

 

 

 

 

SQL Server DATEDIFF() 函数