SQL - Subqueries
Consider the query:
What does this query return?
SELECT emp_name FROM employees WHERE dept_id IN (SELECT dept_id FROM departments WHERE location = 'NY');
What does this query return?
