在不在Oracle工作之间

时间:2014-11-14 05:02:32

标签: oracle

您好我试图在oracle中的函数之间使用函数来获取日期但是它不起作用我在Oracle表中有下面提到的数据

enter image description here

我正在使用下面提到的查询来过滤日期,并且它给我的错误都是在图像中被监控

enter image description here

Plz帮我解决这个问题

1 个答案:

答案 0 :(得分:2)

您似乎尝试使用date函数将date值转换为to_date(...)。列receivedtime的类型看起来为date,因此请尽量不要对该列使用to_date函数,如下所示:

select * 
from use_news
where clientid=159
  and receivedtime between to_date('04/05/2012', 'mm/dd/yyyy')
                       and to_date('11/14/2014', 'mm/dd/yyyy')
;