sql取当前时间前24小时之内的数据怎么取

2024-11-09 05:44:14
推荐回答(5个)
回答1:

sql取当前时间前24小时之内的数据的方法如下:

1、如果是ACCESS的话:

select * from 表名 where DateDiff('h',时间字段名,now())<=24

2、如果是sql server的话:

select * from 表名 where DateDiff(hh,时间字段名,getDate())<=24

扩展资料:

sql取每天固定时间的数据的方法:

select * from 表 where 日期字段>='开始日期' and 日期字段<='截止日期'

and convert(char(8),日期字段,108)>='开始时间' and convert(char(8),日期字段,108)<='截止时间'

例如:

select * from tb1 where dDate>='2010-11-05' and dDate<='2010-11-15'

and convert(char(8),dDate,108)>='22:30:00' and convert(char(8),dDate,108)<='23:00:00'

回答2:

什么数据库~!
如果是ACCESS的话:
select * from 表名 where DateDiff('h',时间字段名,now())<=24
如果是sql server的话:
select * from 表名 where DateDiff(hh,时间字段名,getDate())<=24

回答3:

select * from 表 where `checktime`

回答4:

看是什么数据库了 因为他内置函数不同

回答5:

好像是 smalldatatime