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 でカウントを逆にする方法は? 特別な機能はありますか?ありがとうございました