SQL SERVER | IN Condition
IN condition is an alternative to multiple OR conditions in SELECT, INSERT, UPDATE, or DELETE statement. The IN operator allows multiple values to be tested against the expression and thus reduces the use of multiple OR conditions with each test value.
Syntax:
expression IN (value1, value2, .... value_n);
Where
1. expression : value/attribute to be tested.
2. value1, value2, .. value_n : The values to be tested against expression.
Example:
Creating Table GEEKS_6

Inserting values into Table GEEKS_6:

GEEKS_6 content:

Selecting multiple values using ‘OR’. Multiple OR’s have to be used for checking the expression.

The same query can be answered using ‘IN’ which reduces the number of times conditions have to be written and all test values are present at a single place.
IN Query:

Example 2 : Using ‘IN’ with two tables
Creating Table GEEKS_7:

Inserting values into Table GEEKS_7:

GEEKS_7 content:

Query: Find the common elements from two tables using ‘IN’

Explanation:
The inner query will be executed first and all the values in the ‘name’ column of Table Geeks_7 will be selected. Then the outer query will start executing and it will use the inner query values to filter out matching values.
Recommended Posts:
- Mean and Mode in SQL Server
- SQL Server Identity
- SQL Server | SERVERPROPERTY()
- SQL SERVER | Conditional Statements
- Allow only alphabets in column in SQL Server
- Difference between MySQL and MS SQL Server
- SQL Server | STUFF() Function
- Comparisons between Oracle vs SQL Server
- SQL Server Mathematical functions (SQRT, PI, SQUARE, ROUND, CEILING & FLOOR)
- Count the number of a special day between two dates by using PL/SQL
- MySQLi Procedural Functions
- MySQL | CONNECTION_ID( ) Function
- MySQL | CAST( ) Function
- MySQL | SESSION_USER( ) Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


