SQL Server - AND Operator
The SQL Server (Transact-SQL) AND Operator is used to combine multiple conditions in a WHERE clause of SQL Server statement. It displays a record if all the conditions separated by AND operator are true.
Syntax
The syntax for using AND operator in SQL Server (Transact-SQL) is given below:
SELECT column1, column2, column3, ... FROM table_name WHERE condition1 AND condition2 AND condtion3 ....;
Example:
Consider a database containing a table called Employee with the following records:
EmpID | Name | City | Age | Salary |
---|---|---|---|---|
1 | John | London | 25 | 3000 |
2 | Marry | New York | 24 | 2750 |
3 | Jo | Paris | 27 | 2800 |
4 | Kim | Amsterdam | 30 | 3100 |
5 | Ramesh | New Delhi | 28 | 3000 |
6 | Huang | Beijing | 28 | 2800 |
-
To select all records of the Employee table where Salary is greater than 2800 and Age is less than 30, the query is given below.
SELECT * FROM Employee WHERE Salary > 2800 AND Age < 30;
This will produce the result as shown below:
EmpID Name City Age Salary 1 John London 25 3000 5 Ramesh New Delhi 28 3000
❮ SQL Server - Operators