postgresql 實現查詢某時間區間的所有日期案例

核心sql如下:

select daytime::date from generate_series(
('2017-06-01'),--查詢開始日期(可根據需求調整) 
(select now()::date),--查詢結束日期(可根據需求調整) 
 '1 day'--間隔(可根據需求調整)
) s(daytime)

以上sql,得到結果為從6月1號到今天這個時間區間內的每天的日期,如下:

舉例說明:

查詢tableA所有time_period區間內的日期,time_period的數據格式為:20170101-20170120;

select daytime,periods from (select daytime::date
from generate_series(
(select min(score_date) from tableA),--查詢開始日期
(select now()::date),--查詢結束日期
  '1 day'--間隔
) s(daytime)) t ,tableA where 
(t.daytime >((substr(time_period,0,5)||'-'||substr(time_period,5,2)||'-'||substr(time_period,7,2))::timestamp + '-1 day')::date ) 
and t.daytime <((substr(time_period,10,4)||'-'||substr(time_period,14,2)||'-'||substr(time_period,16,2))::timestamp + '1 day')::date

補充:PostgreSQL查找某個時間段內某條數據(訂單)的最大創建時間、最小創建時間

sql語句:

select max(created_date),min(created_date) from biz_retail_order where source_order_no like '%daling_qa11184_%' and created_date > '2020-11-18 15:30:00' ;

結果為:

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。如有錯誤或未考慮完全的地方,望不吝賜教。

推薦閱讀: