PostgreSQL - Subqueries in PostgreSQL
What will be the output of this query?
SELECT name FROM employees WHERE department_id IN (SELECT id FROM departments WHERE location = 'NY');
