MySQL INMultiple values filter. MySQL IN Operator The IN operator allows you to specify multiple values in a WHERE clause. The IN operator is a shorthand for multiple OR conditions. ExampleSELECT * FROM Customers WHERE Country IN ('Germany', 'France', 'UK');Try it Yourself PreviousNext