SQL - Views
Consider the view:
What will the query
CREATE VIEW employee_summary AS SELECT department, COUNT(*) AS emp_count FROM employees GROUP BY department;
What will the query
SELECT * FROM employee_summary WHERE emp_count > 5; return?