SQL - Subqueries
Identify the error in this query:
SELECT * FROM orders WHERE customer_id = (SELECT customer_id FROM customers WHERE city = 'New York');
