- Published on
Leetcode - 1112. Highest Grade For Each Student
- Authors
- Name
- Indo Yoon
Table of Contents
문제
[Loading...
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
LeetCode
](https://leetcode.com/problems/highest-grade-for-each-student/description/)
정답
WITH Ranks AS (
SELECT *, RANK() OVER(
PARTITION BY student_id
ORDER BY grade DESC
) as 'rank'
FROM Enrollments
)
# SELECT Enrollments.*
# FROM Enrollments, Ranks
SELECT student_id, MIN(course_id) as course_id, grade
FROM Ranks
WHERE Ranks.rank = 1
GROUP BY student_id