如何用SQL查询一个时间段内的特定时间数据?

如何用SQL查询一个时间段内的特定时间数据?,第1张

datetime型的精度是微秒级的,楼上两位只写到秒,还是有出错的可能

将一个datetime取整(取到00:00)有3种方法:

convert(smalldatetime,convert(varchar,日期,112),112)

cast(cast(日期 as int) as smalldatetime)

dateadd(dd,datediff(dd,'2010-1-1',日期),'2010-1-1')

根据你的需求,用方法1,条件写成

where tm>='2010-3-1' and tm<'2010-4-1'

and tm=dateadd(hh,12,convert(smalldatetime,convert(varchar,tm,112),112))

sql server:

select * from 表 where 发生日期>'2008-7-1' and 发生日期<'2008-12-31'

access:

select * from 表 where 发生日期>#2008-7-1# and 发生日期<#2008-12-31#

这样就可以了,注意sql server与access中的日期有一点不一样。

扩展资料:

sql查询日期语句

select * from ShopOrder where datediff(week,ordTime,getdate()-1)=0   //查询当天日期在一周年的数据

select * from ShopOrder where datediff(day,ordTime,getdate()-1)=0   //查询当天的所有数据

SELECT * FROM A where datediff(d,datetime,getdate()) <=30 //前30天

SELECT * FROM A WHERE DATEDIFF(m, shijian, GETDATE()) <=1  // 上一月

查询当天记录另类的方法:

SELECT *

FROM j_GradeShop

WHERE (GAddTime BETWEEN CONVERT(datetime, LEFT(GETDATE(), 10) + ' 00:00:00.000')

AND CONVERT(datetime, LEFT(GETDATE(), 10) + ' 00:00:00.000') + 1)

ORDER BY GAddTime DESC


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10038287.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-04
下一篇 2023-05-04

发表评论

登录后才能评论

评论列表(0条)

保存