oracle查询时间

oracle查询和时间有关的命令:

方法一:select * from dual 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 dual where to_char(time,'yyyy-mm-dd')='2012-06-18';
方法三:select * from dual where trunc(time)=to_date('2012-06-18','yyyy-mm-dd');

 

posted @ 2017-05-25 14:37  田云  阅读(1031)  评论(0编辑  收藏  举报