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

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