Q. What will this query do?
Code:
SELECT AVG(score) FROM results;
β
Correct Answer: (C)
Finds the average score
Explanation: `AVG()` returns the average of a numeric column.