Created
August 23, 2013 15:18
-
-
Save tehmoth/6320512 to your computer and use it in GitHub Desktop.
WINDOW version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT name, subject, grade FROM | |
(SELECT students.name, subjects.subject, grade, RANK() over (PARTITION BY students.student_id ORDER BY grade) rank | |
FROM exams, students, subjects | |
WHERE exams.subject_id = subjects.subject_id AND exams.student_id = students.student_id) AS grades | |
WHERE rank = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment