select DATE '2008-01-01' + (interval '1' month * generate_series(0,11))
Upravit
Pokud potřebujete vypočítat číslo dynamicky, může pomoci následující:
select DATE '2008-01-01' + (interval '1' month * generate_series(0,month_count::int))
from (
select extract(year from diff) * 12 + extract(month from diff) + 12 as month_count
from (
select age(current_timestamp, TIMESTAMP '2008-01-01 00:00:00') as diff
) td
) t
Tím se vypočítá počet měsíců od 1. 1. 2008 a přidá se k němu 12.
Ale souhlasím se Scottem:měli byste to vložit do funkce set returning, abyste mohli udělat něco jako select * from calc_months(DATE '2008-01-01')