Hi,
i got begindate (01/01/2004) and enddate (01/01/2004) and i need a sql-statement which results
01/01/2004, field, ...
01/02/2004, field, ...
01/03/2004, field, ...
.
.
.
without using a statement like
select d.date, a.field, ...
from table_1 a
join table_2 b on b.date between a.begin and a.end
Is there any way to get all days between with a sql-statement avoiding user-defined functions?
Thanks alot in advance
i got begindate (01/01/2004) and enddate (01/01/2004) and i need a sql-statement which results
01/01/2004, field, ...
01/02/2004, field, ...
01/03/2004, field, ...
.
.
.
without using a statement like
select d.date, a.field, ...
from table_1 a
join table_2 b on b.date between a.begin and a.end
Is there any way to get all days between with a sql-statement avoiding user-defined functions?
Thanks alot in advance