SQL - Subqueries
You want to find all customers who have placed orders for products in the 'Electronics' category. Given tables:
Which query correctly uses a subquery with IN to get these customers?
Customers(customer_id, name)Orders(order_id, customer_id, product_id)Products(product_id, category)Which query correctly uses a subquery with IN to get these customers?
