Say the table "TblTest" contains a single column with the following data (3,6,4,8,32,26). Write an SQL statement to display the data in the following format
col1 col2
---- -----
3 6
6 4
4 8
8 32
32 26
No Ordering of data allowed. Goes without saying NO CURSORS.
col1 col2
---- -----
3 6
6 4
4 8
8 32
32 26
No Ordering of data allowed. Goes without saying NO CURSORS.