Exercise: Sort by Course and Name Sort students by course, then name. Solution sqlCopy1SELECT * FROM students 2ORDER BY course, name;