programming-examples/sql/WildcardSpecialOperators/Write a query to sort out those customers with all information whose ID value is within any of 3007, 3008 and 3009.sql

4 lines
190 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*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);