oracle怎么查询时间?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle怎么查询时间?相关的知识,希望对你有一定的参考价值。
参考技术A 写法有很多种,例如下面的:\\x0d\\x0a方法一: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\');\\x0d\\x0a方法二:select * from dual where to_char(time,\'yyyy-mm-dd\')=\'2012-06-18\';\\x0d\\x0a方法三:select * from dual where trunc(time)=to_date(\'2012-06-18\',\'yyyy-mm-dd\');\\x0d\\x0a当然楼主也可以按上面的先转换下日期的显示格式再查询撒,都可以的,呵呵!!!以上是关于oracle怎么查询时间?的主要内容,如果未能解决你的问题,请参考以下文章