I\'d like to get the list of days between the two dates (including them) in a PostgreSQL database. For example, if I had:
select CURRENT_DATE + i from generate_series(date '2012-06-29'- CURRENT_DATE, date '2012-07-03' - CURRENT_DATE ) i
or even shorter:
select i::date from generate_series('2012-06-29', '2012-07-03', '1 day'::interval) i