The SQL IN Operator
The IN
operator allows you to specify multiple values in a
clause.
WHERE
The IN
operator is a shorthand for multiple
conditions.
OR
Example
Return all customers from ‘Germany’, ‘France’, or ‘UK’
SELECT * FROM Customers
WHERE Country IN ('Germany', 'France', 'UK');