Easy Tutorial
❮ Sql Summary Sql Null Values ❯

SQL IN Operator


IN Operator

The IN operator allows you to specify multiple values in a WHERE clause.

SQL IN Syntax

SELECT column1, column2, ...
FROM table_name
WHERE column IN (value1, value2, ...);

Parameter Explanation:

Demo Database

In this tutorial, we will use the tutorialpro sample database.

Below is the data from the "Websites" table:

mysql> SELECT * FROM Websites;
+----+---------------+---------------------------+-------+---------+
| id | name          | url                       | alexa | country |
+----+---------------+---------------------------+-------+---------+
|  1 | Google        | https://www.google.cm/    |     1 | USA     |
|  2 | Taobao        | https://www.taobao.com/   |    13 | CN      |
|  3 | tutorialpro.org       | http://www.tutorialpro.org/    |  5000 | USA     |
|  4 | Weibo         | http://weibo.com/         |    20 | CN      |
|  5 | Facebook      | https://www.facebook.com/ |     3 | USA     |
|  7 | Stackoverflow | http://stackoverflow.com/ |     0 | IND     |
+----+---------------+---------------------------+-------+---------+

IN Operator Example

The following SQL statement selects all websites where the name is either "Google" or "tutorialpro.org":

Example

SELECT * FROM Websites
WHERE name IN ('Google', 'tutorialpro.org');

Execution Output:

❮ Sql Summary Sql Null Values ❯