Exercise: Sum Marks Calculate total marks of all students. Solution sqlCopy1SELECT SUM(marks) AS total_marks FROM students;