SQL - GROUP BY and HAVING
Given the table
Employees with column Department containing values: 'Sales', NULL, 'HR', NULL, 'Sales', what will be the result of:SELECT Department, COUNT(*) FROM Employees GROUP BY Department;?