Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PostgreSQL では、2 つの日付の間のすべての日のリストを生成するのは非常に簡単です。
>>> 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
Exasolで同じ結果を達成することは可能ですか?