55智能网
新记
查找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
相似回答
大家正在搜
相关问题
在oracle中如何实现查询某一时间段的数据?
oracle数据库 查询时间段一年的数据的SQL语句怎么写。...
oracle 里的查询时间问题 sql语句
求一oracle查询sql语句(时间范围)
在oracle中怎么查看在某一段时间内执行的sql语句所用的...
在oracle中怎么查看在某一段时间内执行的sql语句所用的...
oracle 查询一段时间内每一天的统计数据sql怎么写
oracle查询时间段语句