核心sql如下:
select daytime::date from generate_series(
('2017-06-01'),--查詢開始日期(可根據(jù)需求調(diào)整)
(select now()::date),--查詢結(jié)束日期(可根據(jù)需求調(diào)整)
'1 day'--間隔(可根據(jù)需求調(diào)整)
) s(daytime)
以上sql,得到結(jié)果為從6月1號到今天這個時間區(qū)間內(nèi)的每天的日期,如下:
舉例說明:
查詢tableA所有time_period區(qū)間內(nèi)的日期,time_period的數(shù)據(jù)格式為:20170101-20170120;
select daytime,periods from (select daytime::date
from generate_series(
(select min(score_date) from tableA),--查詢開始日期
(select now()::date),--查詢結(jié)束日期
'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查找某個時間段內(nèi)某條數(shù)據(jù)(訂單)的最大創(chuàng)建時間、最小創(chuàng)建時間
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' ;
結(jié)果為:
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。如有錯誤或未考慮完全的地方,望不吝賜教。
您可能感興趣的文章:- PostgreSQL TIMESTAMP類型 時間戳操作
- PostgreSQL 如何獲取當前日期時間及注意事項
- PostgreSQL更新表時時間戳不會自動更新的解決方法
- PostgreSQL中常用的時間日期腳本使用教程
- 用一整天的時間安裝postgreSQL NTFS權(quán)限
- postgresql 中的時間處理小技巧(推薦)