0
I need to select and return a date range in Firebird. It should be the same logic as generate_series
postgresql.
SELECT date_trunc('day', dd):: date FROM generate_series( '2019-07-22'::timestamp, '2019-07-24'::timestamp, '1 day'::interval) dd
Does anyone know how? Note: I need to do it in select, no need for functions or anything like that...