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