Format sqlplus out
I have a table T with three columns (c1,c2,c3). I would like to have the rows display as follows when I do "select * from T;
Table T
C1 C1value1
C2 C2value1
C3 C3value1
C1 C1value2
C2 C2value2
C3 C3value2
.................
C1 C1valuen
C2 C2valuen
C3 C3valuen
How to do the above for any table?
Thanks.
Hisham