SQL - Subqueries
Identify the error in this SQL query:
SELECT emp_id FROM Employees WHERE dept_id IN SELECT dept_id FROM Departments WHERE dept_name = 'Finance';
