I've a question, how can I get the highest value, then the lowest value, then the second highest value from a table.
For example: in the table
Name Value
----------------------
Apple 2
Pear 3
Pineapple 6
Mango 7
Kiwi 1
Result should look like this:
Name Value
-----------------------
Mango 7
Kiwi 1
Pineapple 6
Apple 2
Pear 3
Thanks!