Pgsql 獲取當前周/季度 的開始和結束時間


select date_trunc('week', current_date::timestamp) as 周開始時間;
select date_trunc('week',current_date::timestamp) + '6 days' as 周結束時間;

 

select date_trunc('quarter', current_date::timestamp) as 季度開始時間;
select date_trunc('quarter', current_date::timestamp) + '3 month' - interval '1 d' as 季度結束時間;


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM