问题描述
- postgresql 指定月的所有天查询
-
问:指定月2014/10
得到结果:2014/10/01
2014/10/02
2014/10/03
。
。
。
2014/10/31各位帮帮忙 试了好几个都不理想
解决方案
http://down.51cto.com/data/211212 里面有个postgresql制作日历的程序,它的思路你可以借鉴
解决方案二:
WITH RECURSIVE t AS (
select to_date('20090201','yyyymmdd') ttt
union ALL
SELECT ttt+1 FROM t WHERE ttt < to_date('2009/02/28','yyyy/mm/dd')
)
select * from t
时间: 2024-09-17 14:18:27