Exercise: Grade and ID Sort by grade descending, then id ascending. Solution sqlCopy1SELECT * FROM students 2ORDER BY grade DESC, id ASC;