Hi all,
I have one requirement in which I want the output of one column in ascending order and desc order in seprate columns.
For Examaple
select '1' as COL from dual
union all
select '2' from dual
union all
select '3' from dual
union all
select '4' from dual
Output Should be
COL COL1
1 4
2 3
3 2
4 1
Regards,
Achyut