oraclesq语句查询时间,Oracle实现查询时间段的Sql语句两法Oracle实现查询时间段的Sql语句两法,相⽐ORacle要查询时间段的Sql语句还是与Sql Server的Sql语句有区别的,下⾯举两种⽅法来说明在ORacle是如何查询时间段的:
第⼀种⽅法:between……and
select * from location t
where locationdate
Between to_date('2010-5-4 10:00:00','yyyy-mm-dd hh24:mi:ss')
And to_date('2010-5-4 15:00:00','yyyy-mm-dd hh24:mi:ss')
select语句查询日期order by locationdate desc
第⼆种⽅法:.>=…,<=…
select t.* from location t where locationdate>=to_date('2010-5-4 10:00:00','yyyy-mm-dd hh24:mi:ss') and
locationdate<=to_date('2010-5-4 15:00:00','yyyy-mm-dd hh24:mi:ss') order by locationdate desc
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论