SQL - Views
You have this view:
Which query will cause an error when run on this view?
CREATE VIEW dept_count AS SELECT department, COUNT(*) AS emp_count FROM employees GROUP BY department;
Which query will cause an error when run on this view?
