4 lines
190 B
SQL
4 lines
190 B
SQL
/*Write a query to sort out those customers with all information whose ID value is within any of 3007, 3008 and 3009.*/
|
|
SELECT *
|
|
FROM customer
|
|
WHERE customer_id IN (3007,3008,3009); |