Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> Create a view to return multiple rows based on the column values of a single row, How?

Create a view to return multiple rows based on the column values of a single row, How?

From: <adamvt_at_my-deja.com>
Date: 2000/06/30
Message-ID: <8jgtpl$9t3$1@nnrp1.deja.com>#1/1

OK! SQL Gurus, here is what I have:

First_Date_Of_Month Number_Of_Days

01-jan-2000         31
01-feb-2000         29
01-mar-2000         31

...
...

And here is what I would like to get:

SELECT day_of_the_month, date_of_the_day FROM Period_View WHERE   First_Date_Of_Month = '01-feb-2000';

day_of_the_month date_of_the_day

01               01-feb-2000
02               02-feb-2000

.
.

29 29-feb-2000

Is this possible? If so how?
Thanks for any help!
Adam.

Sent via Deja.com http://www.deja.com/
Before you buy. Received on Fri Jun 30 2000 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US