14 qustion
14 qustion
name VARCHAR(50),
age INT,
marks INT
);
UPDATE Class12_students
ELSE 'D'
END;
-- The ORDER BY does not change the original table; it only displays results.
SELECT
MIN(marks) AS MinMarks,
MAX(marks) AS MaxMarks,
SUM(marks) AS TotalMarks,
COUNT(*) AS StudentCount,
AVG(marks) AS AvgMarks
FROM Class12_students;