Exercise: Sort Descending Sort students by grades in descending order. Solution sqlCopy1SELECT * FROM students 2ORDER BY grade DESC;