Oracle中日期作為條件的查詢有:1、範圍日期的查詢,代碼為【where g_time between to_date()and to_date()】;2、等於某個日期的查詢;3、當前日期的前幾天和後幾天的資料查詢。
Oracle中日期作為條件的查詢有:
1.範圍日期的查詢:
select * from goods where g_time between to_date('2018/12/26 10:01:59','yyyy-MM-dd hh:mi:ss') and to_date('2018/12/26 10:05:17',' yyyy-MM-dd hh:mi:ss');
2.等於某個日期的查詢:
select * from goods where g_time=to_date('2018/12/26 10:05:17','yyyy-MM-dd hh:mi:ss');
3.目前日期的前幾天和後幾天的資料查詢:
select * from goods where g_time >= trunc(sysdate)-6 and < trunc(sysdate)-3;
為什麼要用trunc(sysdate)
呢
因為目前時間一般不會剛好是0點,例如目前是11點,-6就是6天前的11 點開始
4.查詢出每個月倒數第三天上架的商品資訊:
select g.* from goods g where g.g_time=last_day(g.g_time)-2;
#相關學習推薦:oracle資料庫學習教學
以上是Oracle中日期作為條件的查詢有哪些?的詳細內容。更多資訊請關注PHP中文網其他相關文章!