分数排名

This commit is contained in:
zeek 2020-04-15 16:32:43 +08:00
parent 5bc06e86e6
commit b2f710e5b4
1 changed files with 32 additions and 0 deletions

32
sql/scoresRange.sql Normal file
View File

@ -0,0 +1,32 @@
/**
SQL
Rank
+----+-------+
| Id | Score |
+----+-------+
| 1 | 3.50 |
| 2 | 3.65 |
| 3 | 4.00 |
| 4 | 3.85 |
| 5 | 4.00 |
| 6 | 3.65 |
+----+-------+
Scores
+-------+------+
| Score | Rank |
+-------+------+
| 4.00 | 1 |
| 4.00 | 1 |
| 3.85 | 2 |
| 3.65 | 3 |
| 3.65 | 3 |
| 3.50 | 4 |
+-------+------+
*/
select a.Score as Score,
(select count(distinct b.Score) from Scores b where b.Score >= a.Score) as Rank
from Scores a
order by a.Score DESC