两个时间之间:select * from 表名 where 时间字段 between to_date(‘2012-01-01 07:00:00‘, ‘yyyy-mm-dd hh24:mi:ss‘) and to_date(‘2012-01-04 10:00:00‘, ‘yyyy-mm-dd hh24:mi:ss‘)
大于某时间:select * from 表名 where 时间字段 > to_date(‘2012-01-01 07:00:00‘, ‘yyyy-mm-dd hh24:mi:ss‘)