Q. What does this query do?
Code:
SELECT AVG(salary) FROM employees;
β
Correct Answer: (B)
Calculates average salary
Explanation: `AVG()` returns the average of the values in the specified column.