PostgreSQL - Subqueries in PostgreSQL
How can you modify this query to find employees who work in departments that have more than 10 employees?
SELECT name FROM employees WHERE department_id IN (SELECT id FROM departments);
