SQL - Aggregate Functions
Given the table
employees with columns department and salary, what does this query return?SELECT department, COUNT(*), AVG(salary) FROM employees GROUP BY department;
