oracle 查询时间问题

前端之家收集整理的这篇文章主要介绍了oracle 查询时间问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
方法一:select * from 表名 where time between to_date('2012-06-18 00:00:00','yyyy-mm-dd hh24:mi:ss')  and to_date('2012-06-18 23:59:59','yyyy-mm-dd hh24:mi:ss');方法二:select * from 表名 where to_char(indate,'yyyy-mm-dd')='2012-06-18';方法三:select * from 表名  where trunc(indate)=to_date('2012-06-18','yyyy-mm-dd');
原文链接:https://www.f2er.com/oracle/206511.html

猜你在找的Oracle相关文章