Pls help - Sorting based on condition
hi
i need to do record sorting based on certain condition.
right now records are in this sequence.
-------------------------
t 1
d 2
t 3
f 4
f 5
d 6
-------------------
but i need to display it based on this condition.
1) first pick the minimum from second column and then pick record from first column which are same.
It should look like this.
-------------------------
t 1
t 3
d 2
d 6
f 4
f 5
-------------------
Thanks
andru
|