Exercise: Last Alphabetically Get last 6 students in alphabetical order. Solution sqlCopy1SELECT * FROM students 2ORDER BY name DESC 3LIMIT 6;