Skip
Arish's avatar

93. Practice - Alphabetical Sort


Exercise: Sort by Course and Name

Sort students by course, then name.

Solution

sql
1SELECT * FROM students
2ORDER BY course, name;