My issue
SELECT customer_id
FROM customers
WHERE customer_id IN (
SELECT *
FROM orders
WHERE order_value >1000);
what is the correct ans
Learning course: SQL at Work
Problem Link: Subqueries in SQL at Work
can u give correct ans
SELECT customer_id
FROM customers
WHERE customer_id IN (
SELECT *
FROM orders
WHERE order_value >1000);
what is the correct ans
Learning course: SQL at Work
Problem Link: Subqueries in SQL at Work
can u give correct ans