If I have a table foo, and columns username and numbers, how can I get the order of a given username ordered by the numbers column? For example
john, 1
bill, 34
tom, -1
joe, 800
how would i find that bill is 2nd when the numbers are sorted in descending order?
thanks