Exercise: Total Marks per Course Sum marks by course. Solution sqlCopy1SELECT course, SUM(marks) AS total_marks 2FROM students 3GROUP BY course;