2015-12-14 150 views
1

我想查找從給定日期到當天日期的日期。但是我的代碼沒有顯示任何內容。任何提示?在sql中查找範圍日期,oracle

select * from orders 
where order_date between to_date('2014-06-09','yyyy-mm-dd') and to_date(sysdate,'yyyy-mm-dd') 

回答

1

當你做to_date(sysdate,'yyyy-mm-dd'),該year部分將0015而不是2015。因此你沒有得到任何結果。

改爲使用trunc(sysdate)

+0

非常感謝 –