178.Rank Score
https://leetcode.com/problems/rank-scores/
문제설명
Table: Scores
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| id | int |
| score | decimal |
+-------------+---------+
id is the primary key for this table.
Each row of this table contains the score of a game. Score is a floating point value with two decimal places.
SQL 쿼리를 작성하여 점수를 매깁니다. 랭킹은 다음 규칙에 따라 계산해야 합니다:
- 점수는 가장 높은 점수부터 가장 낮은 점수까지 순위를 매겨야 합니다.
- 두 점수 사이에 동점이 있을 경우, 두 점수 모두 같은 순위를 가져야 합니다.
- 동점 후 다음 순위 번호는 다음 연속 정수 값이어야 합니다. 즉, 계급 사이에 구멍이 없어야 합니다.
점수 순으로 결과 테이블을 내림차순으로 반환합니다.
쿼리 결과 형식은 다음 예제와 같습니다.
Example 1:
Input:
Scores table:
+----+-------+
| id | score |
+----+-------+
| 1 | 3.50 |
| 2 | 3.65 |
| 3 | 4.00 |
| 4 | 3.85 |
| 5 | 4.00 |
| 6 | 3.65 |
+----+-------+
Output:
+-------+------+
| score | rank |
+-------+------+
| 4.00 | 1 |
| 4.00 | 1 |
| 3.85 | 2 |
| 3.65 | 3 |
| 3.65 | 3 |
| 3.50 | 4 |
+-------+------+
풀이
SELECT score, DENSE_RANK() over(ORDER BY SCORE DESC) AS "rank"
FROM Scores;
다른풀이
select score,
(select count(distinct t2.score)
FROM Scores t2
WHERE t2.score >= t1.score) as "rank"
from Scores t1
ORDER BY score desc;