| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.oracle -> Re: how to create query ??????????
Assuming that the intervals do not overlap, we can also use ROW_NUMBER() and avoid recursion:
SELECT START_NO, END_NO
FROM LOWER_ENDS JOIN HIGHER_ENDS
ON LOWER_ENDS.SERIES_NUM = HIGHER_ENDS.SERIES_NUM
Received on Sat Jan 17 2004 - 14:48:37 CST
![]() |
![]() |