I have a table holding entries which can be sorted by rank. I want to get the top 10 entries (which is simple using SELECT * FROM table ORDER BY rank DESC), but then I want those entries in descending order, so the one with the lowest rank ends up at the top. How would I do this?
| |||
|
feedback
|
Is this what you're looking for? | |||||
feedback
|
|
You should be able to do:
I guess you have a table like this:
You would get a result like this:
UPDATE: @onik's solution returns the same result. | ||||
|
feedback
|