-- This query shows all the students with the grades they got. -- -- By the way, double dashes is the syntax for comments in SQL. -- SELECT students.name, courses.name, grades.grade FROM students JOIN grades ON students.id = grades.student_id JOIN courses ON courses.id = grades.course_id ORDER BY students.name, courses.name;