You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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);