sql查询今天8点到明天8点数据如何写sql语句?急求!!!

如题这个查询语句该如何写呢?急求!!!!
2024-11-23 02:43:32
推荐回答(3个)
回答1:

你得提供数据库的相关字段。。
select * from 表名 where 时间字段 >='2014/10/31 08:00:00.000' and 时间字段<='2014/11/01 08:00:00.000'

回答2:

select * from table where 日期 between to_char(sysdate,'yyyy/mm/dd') || '08:00:00'
and to_char(sysdate+1,'yyyy/mm/dd') || '08:00:00'

回答3:

什么数据库?