SQL où plusieurs valeurs
SELECT column_name(s)
FROM table_name
WHERE column_name IN (value1, value2, ...);
Delightful Dragonfly
SELECT column_name(s)
FROM table_name
WHERE column_name IN (value1, value2, ...);
/*using of where clause*/
Select * from customer
where customer_id = 1