In PostgreSQL, it's fairly easy to generate a list of all days between two dates:
>>> select generate_series('2013-01-01'::date, '2013-01-06'::date, '1 day'::interval)::date i;
i
2013-01-01
2013-01-02
2013-01-03
2013-01-04
2013-01-05
2013-01-06
Is it possible to achieve the same result in Exasol?