Hi ORACLE Fans,
I have a problem, which is (I think) really complicated:
I have a table with 3 columns:
TIME_OPENED | TIME_CLOSED | DURATION
7/30/2001 10:30:51 | 7/30/2001 10:43:57 | 786
7/30/2001 10:38:19 | 7/30/2001 10:44:02 | 343
I want to generate a new table, in which per row new rows get generated as much as minutes in the TIME-Information are contained.
This means a table with the following row:
TIME
7/30/2001 10:30
7/30/2001 10:31
7/30/2001 10:32
and so on..
How can I do this with an SQL-Script?
Thanks
Michael
I have a problem, which is (I think) really complicated:
I have a table with 3 columns:
TIME_OPENED | TIME_CLOSED | DURATION
7/30/2001 10:30:51 | 7/30/2001 10:43:57 | 786
7/30/2001 10:38:19 | 7/30/2001 10:44:02 | 343
I want to generate a new table, in which per row new rows get generated as much as minutes in the TIME-Information are contained.
This means a table with the following row:
TIME
7/30/2001 10:30
7/30/2001 10:31
7/30/2001 10:32
and so on..
How can I do this with an SQL-Script?
Thanks
Michael