I want to create new table which is pair of 2 continue rows from my old table.
A B
1 a
2 b
3 c
4 d
5 e
I want to create new table as below.
A1 B1 A2 B2
1 a 2 b
2 b 3 c
3 c 4 d
4 d 5 e
I want to find simple solution for this case.