Advertisements
Advertisements
Question
Write suitable SQL query for the following:
To display the average score from the test_results column (attribute) in the Exams table.
Code Writing
Advertisements
Solution
SELECT AVG(test_results) FROM Exams;
shaalaa.com
Is there an error in this question or solution?
