Exercise: Count by Grade Count students in each grade. Solution sqlCopy1SELECT grade, COUNT(*) AS count 2FROM students 3GROUP BY grade;