Skip
Arish's avatar

102. Practice - Last in Order


Exercise: Last Alphabetically

Get last 6 students in alphabetical order.

Solution

sql
1SELECT * FROM students
2ORDER BY name DESC
3LIMIT 6;