Created
August 23, 2013 15:18
Revisions
-
tehmoth created this gist
Aug 23, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ 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;