欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

sqlserver之datepart和datediff应用查找当天上午和下午的数据

程序员文章站 2023-01-22 19:11:23
DATEPART() 函数用于返回日期/时间的单独部分,比如年、月、日、小时、分钟等等。 DATEDIFF() 函数返回两个日期之间的时间差。 计算两个时间差 相差年数:SELECT DATEDIFF(YEAR,'2017-07-01 11:25:52','2018-07-02 12:25:52') ......

datepart() 函数用于返回日期/时间的单独部分,比如年、月、日、小时、分钟等等。

datediff() 函数返回两个日期之间的时间差。

--查找当天上午的数据
 select * from r_attendance where (datepart(hour,rdatetime)>=0 and datepart(hour,rdatetime)<12) and datediff(d,rdatetime,getdate())=0 
 
--查找当天下午的数据
 select * from r_attendance where (datepart(hour,rdatetime)>12 and datepart(hour,rdatetime)<=23) and datediff(d,rdatetime,getdate())=0 

计算两个时间差

相差年数:select datediff(year,'2017-07-01 11:25:52','2018-07-02 12:25:52'); 结果:1

相差天数:select datediff(day,'2018-07-01 11:25:52','2018-07-02 12:25:52'); 结果:1

相差小时:select datediff(hour,'2018-07-01 11:00:00','2018-07-01 16:00:00');  结果:5

相差分数:minute,相差秒数:second,相差月数:month

获取当日、月、年的数据:

根据以上计算时间差,我们可以得出结果,如下:

当日:select * from usertable where datediff(day, starttime, getdate())=0

当月:select * from usertable where datediff(month, starttime, getdate())=0

当年:select * from usertable where datediff(year, starttime, getdate())=0

如果想要获取前一天、月或年等,函数只需等于1即可,依次类推即可,反之获取后一个月、年等。函数等于-1,在此就不一一列出了。

总结

以上所述是小编给大家介绍的sqlserver之datepart和datediff应用查找当天上午和下午的数据,希望对大家有所帮助