Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> View containing all days since day X
Hi all,
I have to generate some reportviews.
The report shall show one row for each
day since day X. Since the tables where
I get the information from don't have
to have an entry for each day I don't
know how to generate the row for
missing days.
An example:
Table BIRTHAY:
| DAY | Born_Baby |
SELECT
DAY,
COUNT(*) BORN
FROM
BIRTHAY
GROUP BY DAY;
Result:
| DAY | BORN |
The problem is that I need the
row with the entry:
| DAY | BORN |
How can I get the row?
Thanks Björn Received on Fri May 20 2005 - 03:04:58 CDT
![]() |
![]() |