id one two thr fou five
1 37 84 1 68 10
2 72 50 87 41 67
3 66 30 89 57 48
4 29 27 35 75 36
5 2 72 9 1 55
6 33 89 17 40 64
7 70 90 63 26 54
8 36 19 51 43 61
9 10 61 20 44 84
10 2 41 43 65 87
我需要反向计算上表中的每个数字。
例子:
61=>1 because if you count from the bottom to the first 61 there's 1 row
26=>3 because if you count from the bottom to the first 26 there are 3 rows
9=>5 because if you count from the bottom to the first 9 there are 5 rows
and so on...
查询应该为所有数字输出一个类似于以下的表:
Number Rows count
61 1
26 3
9 5
这里的问题是:如何在 mySQL 中反转计数?有什么特殊功能吗?谢谢