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')
我想查找從給定日期到當天日期的日期。但是我的代碼沒有顯示任何內容。任何提示?在sql中查找範圍日期,oracle
select * from orders
where order_date between to_date('2014-06-09','yyyy-mm-dd') and to_date(sysdate,'yyyy-mm-dd')
當你做to_date(sysdate,'yyyy-mm-dd')
,該year
部分將0015
而不是2015
。因此你沒有得到任何結果。
改爲使用trunc(sysdate)
。
非常感謝 –