PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Postgresql genera_serie di mesi

select DATE '2008-01-01' + (interval '1' month * generate_series(0,11))

Modifica

Se hai bisogno di calcolare il numero in modo dinamico, quanto segue potrebbe aiutare:

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

Questo calcola il numero di mesi trascorsi dal 01-01-2008 e poi ne aggiunge 12.

Ma sono d'accordo con Scott:dovresti inserirlo in una funzione di ritorno set, in modo da poter fare qualcosa come select * from calc_months(DATE '2008-01-01')