How can we calculate the average employee salary?
AVG() calculates the arithmetic mean of all non-NULL values in the given column.
Average order value (AOV), mean compensation, performance benchmarks.
SELECT AVG(salary) AS average_salary
FROM employees;Practice typing production-grade SQL code for AVG.