Is the a way to generate an arbitrary number of rows that can be used in a join similar to the oracle syntax:
SELECT LEVEL FROM DUAL CONNECT BY LEVEL<=10
|
|
Hate to say this, but In
In
In
In |
|||||
|
|
Have you considered a LEFT OUTER JOIN? |
|||||
|
|
I don't know if this helps but you can number the rows from each select statement with sth. like:
And later join them on this one. At large databases this can be very slow. |
|||
|
|
|
If I'm understanding you, you want a list of consequtive numbers? Just make the list:
... etc, until you have, say, 1024.
-- now you have a series staring at 1 (id) and a series starting at 0 Now join to it, or join to transformations of it:
|
|||
|
|