Reprence Html CSS javascript PHP MySQL Bootsrap

The 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.



IN Syntax

70

or:


71

Demo Database

The table below shows the complete "Customers" table from the Northwind sample database:

72 73 74

IN Operator Examples

The following SQL statement selects all customers that are located in "Germany", "France" or "UK":


The following SQL statement selects all customers that are NOT located in "Germany", "France" or "UK":


The following SQL statement selects all customers that are from the same countries as the suppliers: