PostgreSQL - Subqueries in PostgreSQL
Identify the error in this query:
SELECT id FROM customers WHERE EXISTS SELECT * FROM orders WHERE orders.customer_id = customers.id;
