SQL - Aggregate Functions
What is wrong with this SQL query if we want to find the average salary per department?
SELECT Department, AVG(Salary) FROM Employees;
SELECT Department, AVG(Salary) FROM Employees;
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions