Oracle中日期做爲條件的查詢

1.範圍日期的查詢:ast

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');date

2.等於某個日期的查詢:select

select * from goods
where g_time=to_date('2018/12/26 10:05:17','yyyy-MM-dd hh:mi:ss');im

3.當前日期的前幾天和後幾天的數據:數據

select * from goods查詢

where g_time >= trunc(sysdate)-6  and < trunc(sysdate)-3;時間

爲何要用trunc(sysdate)呢
由於當前時間通常不會正好是0點,好比當前是11點,-6就是6天前的11 點開始time

4.查詢出每月倒數第三天上架的商品信息:日期

select g.* from goods g where g.g_time=last_day(g.g_time)-2;

相關文章
相關標籤/搜索