Hi,
One of my friends was able to get this through in case of a fixed set of rows..
Here is the way you can do it.
create table temp_trans(
col1 varchar2(10)
)
Suppose you insert 3 rows in the table--- then,
select max(decode(rownum, 1, col1, null)),
max(decode(rownum, 2, col1...