查找oracle一定时间范围的sql语句怎么写

如题所述

第1个回答  2017-02-22
where dt between
to_date('2005-05-08 00:00:00', 'yyyy-mm-dd hh24:mi:ss') and
to_date('2005-08-08 00:00:00', 'yyyy-mm-dd hh24:mi:ss')本回答被网友采纳
第2个回答  2019-02-19
使用to_char()将时间字段转换成字符串然后再做。例如
select
*
from
table1
where
to_char(t,'hh24')>=8
and
to_char(t,'hh24')<17
相似回答