
- SQL Tutorial
- SQL - Home
- SQL - Roadmap
- SQL - Overview
- SQL - RDBMS Concepts
- SQL - Databases
- SQL - Syntax
- SQL - Data Types
- SQL - Operators
- SQL - Expressions
- SQL - Comments
- SQL Database
- SQL - Create Database
- SQL - Drop Database
- SQL - Select Database
- SQL - Rename Database
- SQL - Show Databases
- SQL - Backup Database
- SQL Table
- SQL - Create Table
- SQL - Show Tables
- SQL - Rename Table
- SQL - Truncate Table
- SQL - Clone Tables
- SQL - Temporary Tables
- SQL - Alter Tables
- SQL - Drop Table
- SQL - Delete Table
- SQL - Constraints
- SQL Queries
- SQL - Insert Query
- SQL - Select Query
- SQL - Select Into
- SQL - Insert Into Select
- SQL - Update Query
- SQL - Delete Query
- SQL - Sorting Results
- SQL Views
- SQL - Create Views
- SQL - Update Views
- SQL - Drop Views
- SQL - Rename Views
- SQL Operators and Clauses
- SQL - Where Clause
- SQL - Top Clause
- SQL - Distinct Clause
- SQL - Order By Clause
- SQL - Group By Clause
- SQL - Having Clause
- SQL - AND & OR
- SQL - BOOLEAN (BIT) Operator
- SQL - LIKE Operator
- SQL - IN Operator
- SQL - ANY, ALL Operators
- SQL - EXISTS Operator
- SQL - CASE
- SQL - NOT Operator
- SQL - NOT EQUAL
- SQL - IS NULL
- SQL - IS NOT NULL
- SQL - NOT NULL
- SQL - BETWEEN Operator
- SQL - UNION Operator
- SQL - UNION vs UNION ALL
- SQL - INTERSECT Operator
- SQL - EXCEPT Operator
- SQL - Aliases
- SQL Joins
- SQL - Using Joins
- SQL - Inner Join
- SQL - Left Join
- SQL - Right Join
- SQL - Cross Join
- SQL - Full Join
- SQL - Self Join
- SQL - Delete Join
- SQL - Update Join
- SQL - Left Join vs Right Join
- SQL - Union vs Join
- SQL Keys
- SQL - Unique Key
- SQL - Primary Key
- SQL - Foreign Key
- SQL - Composite Key
- SQL - Alternate Key
- SQL Indexes
- SQL - Indexes
- SQL - Create Index
- SQL - Drop Index
- SQL - Show Indexes
- SQL - Unique Index
- SQL - Clustered Index
- SQL - Non-Clustered Index
- Advanced SQL
- SQL - Wildcards
- SQL - Injection
- SQL - Hosting
- SQL - Min & Max
- SQL - Null Functions
- SQL - Check Constraint
- SQL - Default Constraint
- SQL - Stored Procedures
- SQL - NULL Values
- SQL - Transactions
- SQL - Sub Queries
- SQL - Handling Duplicates
- SQL - Using Sequences
- SQL - Auto Increment
- SQL - Date & Time
- SQL - Cursors
- SQL - Common Table Expression
- SQL - Group By vs Order By
- SQL - IN vs EXISTS
- SQL - Database Tuning
- SQL Function Reference
- SQL - Date Functions
- SQL - String Functions
- SQL - Aggregate Functions
- SQL - Numeric Functions
- SQL - Text & Image Functions
- SQL - Statistical Functions
- SQL - Logical Functions
- SQL - Cursor Functions
- SQL - JSON Functions
- SQL - Conversion Functions
- SQL - Datatype Functions
- SQL Useful Resources
- SQL - Questions and Answers
- SQL - Cheatsheet
- SQL - Quick Guide
- SQL - Useful Functions
- SQL - Useful Resources
- SQL - Discussion
SQL - Logical Operators
In SQL, logical operators are used to create conditional expressions that evaluates to either true or false. They are used in the WHERE clause of SELECT, UPDATE, DELETE, and other SQL statements to filter data based on specified conditions. The logical operators available in SQL are as follows:
Operator | Description | Example |
---|---|---|
ALL | TRUE if all of a set of comparisons are TRUE. | |
AND | TRUE if all the conditions separated by AND are TRUE. | |
ANY | TRUE if any one of a set of comparisons are TRUE. | |
BETWEEN | TRUE if the operand lies within the range of comparisons. | |
EXISTS | TRUE if the subquery returns one or more records | |
IN | TRUE if the operand is equal to one of a list of expressions. | |
LIKE | TRUE if the operand matches a pattern specially with wildcard. | |
NOT | Reverses the value of any other Boolean operator. | |
OR | TRUE if any of the conditions separated by OR is TRUE | |
IS NULL | TRUE if the expression value is NULL. | |
SOME | TRUE if some of a set of comparisons are TRUE. | |
UNIQUE | The UNIQUE operator searches every row of a specified table for uniqueness (no duplicates). |
In this chapter we will learn about each operator one-by-one with examples showing its usage. Before proceeding further, let us create a table named CUSTOMERS using the following query −
CREATE TABLE CUSTOMERS( ID INT NOT NULL, NAME VARCHAR(15) NOT NULL, AGE INT NOT NULL, ADDRESS CHAR(25), SALARY DECIMAL(18, 2), PRIMARY KEY(ID) );
Once the table is created, we can insert some values into the table using the following queries −
INSERT INTO CUSTOMERS(ID, NAME, AGE, ADDRESS, SALARY) VALUES(1, 'Ramesh', 32, 'Ahmedabad', 2000.00); INSERT INTO CUSTOMERS(ID, NAME, AGE, ADDRESS, SALARY) VALUES(2, 'khilan', 25, 'Delhi', 1500.00); INSERT INTO CUSTOMERS(ID, NAME, AGE, ADDRESS, SALARY) VALUES(3, 'Kaushik', 23, 'Kota', 2000.00); INSERT INTO CUSTOMERS(ID, NAME, AGE, ADDRESS, SALARY) VALUES(4, 'chaitali', 25, 'Mumbai', 6500.00); INSERT INTO CUSTOMERS(ID, NAME, AGE, ADDRESS, SALARY) VALUES(5, 'Hardhik', 27, 'Bhopal', 8500.00); INSERT INTO CUSTOMERS(ID, NAME, AGE, ADDRESS, SALARY) VALUES(6, 'komal', 22, 'MP', 4500.00); INSERT INTO CUSTOMERS(ID, NAME, AGE, ADDRESS, SALARY) VALUES(7, 'Muffy', 24, 'Indore', 10000.00 );
Let us verify whether the table is created or not using the following query −
SELECT * FROM CUSTOMERS;
As we can see in the below output, the table has been created in the database.
ID | NAME | AGE | ADDRESS | SALARY |
---|---|---|---|---|
1 | Ramesh | 32 | Ahmedabad | 2000.00 |
2 | Khilan | 25 | Delhi | 1500.00 |
3 | kaushik | 23 | Kota | 2000.00 |
4 | Chaitali | 25 | Mumbai | 6500.00 |
5 | Hardik | 27 | Bhopal | 8500.00 |
6 | Komal | 22 | MP | 4500.00 |
7 | Muffy | 24 | Indore | 10000.00 |
Now, let us perform all the SQL logical operations using the above table.
SQL ALL Operator
The SQL ALL operator is used to compare a value to a set of values returned by a subquery. It checks if the specified condition holds true for all values in the result set of the subquery. The ALL operator is generally used with comparison operators such as =, >, <, >=, <=, <>, etc.
Example
The following query returns the details of all the customers whose salary is not equal to the salary of any customer whose AGE is 25.
select * from CUSTOMERS where SALARY <> ALL (select SALARY from CUSTOMERS where AGE = 25);
Output
When we execute the above query, the output is obtained as follows −
ID | NAME | AGE | ADDRESS | SALARY |
---|---|---|---|---|
1 | Ramesh | 32 | Ahmedabad | 2000.00 |
3 | kaushik | 23 | Kota | 2000.00 |
5 | Hardik | 27 | Bhopal | 8500.00 |
6 | Komal | 22 | MP | 4500.00 |
7 | Muffy | 24 | Indore | 10000.00 |
SQL AND Operator
The SQL AND operator is used to combine multiple conditions in a WHERE clause or a HAVING clause. It allows you to retrieve rows that meet all specified conditions. If all the conditions joined by AND are true for a row, that row will be included in the result set.
Example
In here, we are fetching the ID, Name and Salary of the customers whose salary is greater than 2000 and age is less than 25 years.
SELECT ID, NAME, SALARY FROM CUSTOMERS WHERE SALARY > 2000 AND age < 25;
Output
When we execute the above query, the output is obtained as follows −
ID | NAME | SALARY |
---|---|---|
6 | Komal | 4500.00 |
7 | Muffy | 10000.00 |
SQL ANY Operator
The SQL ANY operator is used to compare a single value with a set of values returned by a subquery. It checks if the specified condition holds true for at least one value in the result set of the subquery. The ANY operator is generally used with comparison operators such as "=", ">", "<", ">=", "<=", "<>", etc.
Example
Now, let us try to list out the details of all the customers whose salary is greater than the salary of any customer whose AGE is 32 i.e. Chaitali, Hardik, Komal and Muffy in this case.
select * from customers WHERE SALARY > ANY (select SALARY from CUSTOMERS where AGE = 32);
Output
On executing the above query, the output is displayed as follows −
ID | NAME | AGE | ADDRESS | SALARY |
---|---|---|---|---|
4 | Chaitali | 25 | Mumbai | 6500.00 |
5 | Hardik | 27 | Bhopal | 8500.00 |
6 | Komal | 22 | MP | 4500.00 |
7 | Muffy | 24 | Indore | 10000.00 |
SQL BETWEEN Operator
The SQL BETWEEN operator is used to filter data within a specified range of values. It checks if a value is within the specified lower and upper bounds (inclusive). The BETWEEN operator is used in the WHERE clause of a SQL query to retrieve rows that fall within a particular range.
Example
Here, we are trying to retrieve customers whose age is between 18 and 22.
SELECT * FROM EMPLOYEE WHERE AGE BETWEEN 18 AND 22;
Output
The table for the above query produced as given below −
ID | NAME | AGE | ADDRESS | SALARY | JOIN_DATE |
---|---|---|---|---|---|
1 | Khilan | 22 | Nijamabad | 57500.84 | 2022-01-14 |
2 | Ramesh | 21 | Hyderabad | 25550.12 | 2023-01-02 |
4 | kaushik | 18 | Bangolore | 47275.43 | 2023-03-15 |
6 | Hardik | 19 | Noida | 44200.09 | 2023-06-04 |
SQL EXISTS Operator
The SQL EXISTS operator is used to verify whether a particular record exists in a SQL table. While using this operator we need to specify the record (for which you have to check the existence) using a subquery. It is used in the WHERE clause to filter results based on the existence of rows in the subquery. The EXISTS operator returns true if the subquery returns at least one row; otherwise, it returns false.
To understand better, let us create another table CARS, containing the details such as id of the customer, name and price of the car, using the following query −
create table CARS( ID INT NOT NULL, NAME VARCHAR(20) NOT NULL, PRICE INT NOT NULL, PRIMARY KEY(ID) );
Using the INSERT statement, let us insert values into this table −
insert INTO CARS VALUES(2, 'Maruti Swift', 450000); insert INTO CARS VALUES(4, 'VOLVO', 2250000); insert INTO CARS VALUES(7, 'Toyota', 2400000);
If you try to retrieve the contents of the table using the SELECT query the table is displayed as follows −
ID | NAME | PRICE |
---|---|---|
2 | Maruti Swift | 450000 |
4 | VOLVO | 2250000 |
7 | Toyota | 2400000 |
Example
Now, let us try to return the lists of the customers with the price of the car greater than 2,000,000.
SELECT * FROM CUSTOMERS WHERE EXISTS (SELECT PRICE FROM CARS WHERE CARS.ID = CUSTOMERS.ID AND PRICE > 2000000);
Output
Following is the output of the above query −
ID | NAME | AGE | ADDRESS | SALARY |
---|---|---|---|---|
4 | Chaitali | 25 | Mumbai | 6500.00 |
7 | Muffy | 24 | Indore | 10000.00 |
SQL IN Operator
The SQL IN operator is used to specify a list of values to match against a specific column or expression. It allows us to retrieve rows that have a column value matching any of the values in the specified list. The IN operator is used in the WHERE clause of a SQL query to filter data based on multiple possible values.
Example
In the following query, we are trying to display records with NAME equal to 'Khilan', 'Hardik' and 'Muffy' (string values).
select * from CUSTOMERS WHERE NAME IN ('Khilan', 'Hardhik', 'Muffy');
Output
The output produced is as shown below −
ID | NAME | AGE | ADDRESS | SALARY |
---|---|---|---|---|
2 | Khilan | 25 | Delhi | 1500.00 |
5 | Hardhik | 27 | Bhopal | 8500.00 |
7 | Muffy | 24 | Indore | 10000.00 |
SQL LIKE Operator
The SQL LIKE operator is used to perform pattern matching against character data. It is used in the WHERE clause of a SQL query to filter rows based on specific patterns within a column. The LIKE operator is particularly useful when you want to perform wildcard searches i.e. '%', '_', '[]', '[^]'.
Example
Let us try to display all the records from the CUSTOMERS table, where the SALARY starts with 200.
SELECT * FROM CUSTOMERS WHERE SALARY LIKE '200%';
Output
Output of the above code is as shown below −
ID | NAME | AGE | ADDRESS | SALARY |
---|---|---|---|---|
1 | Ramesh | 32 | Ahmedabad | 2000.00 |
3 | Kaushik | 23 | Kota | 2000.00 |
SQL NOT Operator
The SQL NOT operator used to negate a condition. It returns true if the specified condition is false and false if the condition is true. The NOT operator is commonly used to perform negative or inverse filtering in SQL queries.
Example
In the following query, we are retrieving the customers whose salary is not greater than 2000.
SELECT * FROM CUSTOMERS WHERE NOT (SALARY > 2000.00);
Output
Output of the above code is as shown below −
ID | NAME | AGE | ADDRESS | SALARY |
---|---|---|---|---|
1 | Ramesh | 32 | Ahmedabad | 2000.00 |
2 | Khilan | 25 | Delhi | 1500.00 |
3 | Kaushik | 23 | Kota | 2000.00 |
SQL OR Operator
The SQL OR operator is used to combine multiple conditions in a WHERE clause or a HAVING clause. It allows us to retrieve rows that meet at least one of the specified conditions. If any of the conditions joined by the OR operator are true for a row, that row will be included in the result set.
Example
The following query fetches the ID, Name and Salary of the customers whose salary is greater than 2000 or age is less than 25 years.
SELECT ID, NAME, SALARY FROM CUSTOMERS WHERE SALARY > 2000 OR age < 25;
Output
Following is the output of the above query −
ID | NAME | SALARY |
---|---|---|
3 | Kaushik | 2000.00 |
4 | Chaitali | 6500.00 |
5 | Hardik | 8500.00 |
6 | Komal | 4500.00 |
7 | Muffy | 10000.00 |
SQL IS NULL Operator
The SQL IS NULL operator is used to check whether a column has a null value (having no value). It returns true if the column value is NULL and false if it is not.
Example
Let's consider a table named "Fruit" that we are going to create in our database and which contains some null values in the fields. Execute the below query to create a table.
CREATE TABLE Fruit ( ID INT NOT NULL, NAME VARCHAR (20) NOT NULL, ADDRESS CHAR (25), PRICE DECIMAL (18, 2), PRIMARY KEY (ID) );
Now we are going to populate the above-created table by using the below query.
INSERT INTO Fruit (ID,NAME,ADDRESS,PRICE) VALUES (1, 'Apple', 'Shimla', 2000.00 ); INSERT INTO Fruit (ID,NAME,ADDRESS,PRICE) VALUES (2, 'Mango',NULL, 3000.00 ); INSERT INTO Fruit (ID,NAME,ADDRESS,PRICE) VALUES (3, 'Orange',NULL, 4000.00 ); INSERT INTO Fruit (ID,NAME,ADDRESS,PRICE) VALUES (4, 'Banana', 'AP',NULL); INSERT INTO Fruit (ID,NAME,ADDRESS,PRICE) VALUES (5, 'JackFruit', 'Ooty',NULL);
Verification
To check whether the table is created or not, let's execute the below query.
SELECT * FROM Fruit;
On executing it, it will display a table as shown below −
ID | NAME | ADDRESS | PRICE |
---|---|---|---|
1 | Apple | Shimla | 2000.00 |
2 | Mango | NULL | 3000.00 |
3 | Orange | NULL | 4000.00 |
4 | Banana | AP | NULL |
5 | JackFruit | Ooty | NULL |
Now, we are trying to retrieve the list of fruits where address is not provided.
SELECT * FROM Fruit WHERE ADDRESS IS NULL;
Output
Output of the above query is as shown below −
ID | NAME | ADDRESS | PRICE |
---|---|---|---|
2 | Mango | NULL | 3000.00 |
3 | Orange | NULL | 4000.00 |