Program 16: Find the min, max, sum, and average of the marks in a student marks table

Clear Doubts with Computer Tutor
In case you’re facing problems in understanding concepts, writing programs, solving questions, want to learn fun facts | tips | tricks or absolutely anything around computer science, feel free to join CTs learner-teacher community: students.computertutor.in

Select min(marks) as minimum_marks , max(marks) as maximum_marks , sum(marks) as total_marks , avg(marks) as average_marks
From student_marks ;

You cannot copy content of this page