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