I have a simple table as follows
SQL> select * from test;
ID STUFF
---------- ------------------------------------------------------------
1 a
2 b
3 c
4 d
5 e
6 f
7 g
7 rows selected.
I'd like to construct a query that returns something like this:
STUFF A STUFF B
---------- --------------------------------------
a e
b f
c g
d NULL
That is, take two ranges determined by the id, with missing values padded by NULL. The ranges are continuous, may overlap, and are different lengths.
Is this possible? If so, what's the query?
Temp table sql:
CREATE TABLE test(id number, stuff VARCHAR(20));
INSERT INTO test VALUES (1, 'a');
INSERT INTO test VALUES (2, 'b');
INSERT INTO test VALUES (3, 'c');
INSERT INTO test VALUES (4, 'd');
INSERT INTO test VALUES (5, 'e');
INSERT INTO test VALUES (6, 'f');
INSERT INTO test VALUES (7, 'g');