EDUCBA Logo

EDUCBA

MENUMENU
  • Explore
    • EDUCBA Pro
    • PRO Bundles
    • All Courses
    • All Specializations
  • Blog
  • Enterprise
  • Free Courses
  • All Courses
  • All Specializations
  • Log in
  • Sign Up
Home Data Science Data Science Tutorials SQL Tutorial SQL Operators
 

SQL Operators

Priya Pedamkar
Article byPriya Pedamkar

Updated March 27, 2023

sql operators

 

 

Introduction to SQL Operators

SQL Operators are defined as a symbol or particular reserved keywords used to specify some action performed on the given expression, including several clauses to tell the system how the operators behave. Operators do calculations between the data items or operand and execute the Query result. It provides a condition in SQL statements or combines multiple conditions and conducts them between the operands (filters the results). The operators used between the data can come with single or binary operands. All the operators are specified with the conditional statements and the WHERE clause of SQL.

Watch our Demo Courses and Videos

Valuation, Hadoop, Excel, Mobile Apps, Web Development & many more.

Types of SQL Operators

SQL is the foundation of database management systems that deals with a variety of manipulation of data. Therefore, SQL provides some SQL Operators to perform Operations, and Evaluating the Expression order of precedence is very important. Following are the various Operators used in SQls.

  1. Arithmetic Operators
  2. Comparison Operators
  3. Logical Operators

Let’s see them One by one in detail:

1. Arithmetic Operators

In the SQL query, these operators manipulate mathematical calibrations like addition, multiplication, division, subtraction, and other modulus numeric values.

Syntax:

Select <expression 1> operator <expression 2>
1. Addition

This Operator Helps in adding values on both sides of the operators. Below are the unary Operators. Example: M + N

Code:

SQL> select 11+ 20;

Output:

SQL Operator - 1

2. Subtraction

This Operator implies subtracting values on both sides of the Operator (good deal from the left). Example: M – N

Code:

SQL> select 30- 20;

Output:

SQL Operator - 2

3. Multiplication

This SQL operator does a multiplication operation between two operands. Example: M*N

Code:

SQL> select 12 * 6;

Output:

SQL Operator - 3

4. Division

This Operator performs actions by dividing one expression by the other expressions. Example: M/N

Code:

SQL> select 120 / 5;

Output:

SQL Operator - 4

5. Modulus

This SQL operator returns the remainder of the division process between two operands. The following statement for this is:

Code:

SQL> select 12 / 7;

Output:

SQL Operator - 5

  • Below Query using Arithmetic Operation on a specific Database Table. Consider a table ‘Finance’ with four Columns.

SQL Operator - 6

  • I am using Arithmetic Operators on the Specific fields On the Table. Here I have taken the Salary column to perform the Arithmetic operation.

Example #1

Code:

SELECT fid, FName, salary, salary + 50
AS "Revised Sal" FROM finance;

Output:

SQL Operator - 7

Example #2

Code:

SELECT fid, FName, salary, salary - 150
AS "Revised Sal" FROM finance;

Output:

SQL Operator - 8

  • That is all about the Arithmetic operations of SQL. In the next section, we shall see Comparison operators

2. Comparison Operators or Relational Operators

Being conditional takes two expressions, makes a useful comparison, and returns either True or False. It does the operations such as equal to, lesser than, greater than, or greater than similar to and other advanced concepts. This Operator joins their hands with the ‘where’ clause to select the particular columns in the records. Here in Below Section, we describe different types of relational operators and a few examples of them along with the syntax.

Syntax:

SELECT column FROM table WHERE condition1 Relational Operator condition2;
1. Equal to (=)

This Operator checks whether the value of the two operands is the same. If it is equal, it returns true; if not, it returns false.

Code:

SELECT FName, salary FROM finance where salary =5000;

Output:

SQL Operator - 9

2. Not equal to or Inequality (! =), (<>)

It verifies whether the two operands’ values are equal or not. If they are not identical, then the statement returns True.

Code:

SELECT FName, salary FROM finance where salary <>2500;

Output:

SQL Operator - 10

3. Greater than (>)

It is used in SQL to check for the more significant value between two operands.

Code:

SELECT FName, salary FROM finance where salary>5000;

Output:

Greater than (>)

4. Greater than equal to (> =)

It is used in SQL to check for the greater than or equal to a value between two operands.

Code:

SELECT FName, salary FROM finance where salary>=5000;

Output:

Greater than equal to (> =)

5. Lesser than (<)

This Operator in SQL checks whether a left operand is lesser than the right operand. If it is true, it results in the result.

Code:

SELECT FName, salary FROM finance where salary < 5000;

Output:

Lesser than (<)

6. Lesser than or Equal to (<=)

This Operator in SQL checks whether a left operand is lesser than or equal to the right operand. If it is true, it results in the result.

Code:

SELECT FName, salary FROM finance where salary <=4500;

Output:

SQL Operator - 14

Some advanced operator is Like, IS Not Null, which we shall see later.

3. Logical Operators

The Logical Operators perform logical operations in the SQL, which are true or False. Different operators used here are listed below:

  • AND
  • OR
  • NOT
  • BETWEEN
  • ANY

Syntax:

SELECT col name  * | expr [logical operator]
[col name | * | expr..]
FROM tablename
WHERE <expr> [ logical operator |
arithmetic operator | ...] <expressions>;

Considering the same database Finance to perform the Logical operators:

1. AND Operator

It gives preference to making use of multiple conditions with the WHERE clause.

Code:

SELECT  fid,FName,address,salary
FROM finance
WHERE  FName  =  'Leslia' AND  salary  =  2500;

Output:

AND Operator

2. OR

This compares the expressions in the statement and returns true if either of the conditions is True.

Code:

SELECT  fid,FName,address,salary
FROM finance
WHERE  FName  =  'Gruce TOM' OR salary  =  2500;

Output:

 OR

3. NOT

This Operator takes an argument as a single Boolean and returns true if it is false and vice-versa.

Code:

SELECT Fid , address FROM finance WHERE NOT FName = "Dany";

Output:

NOT

4. ANY

A specific value is taken and compared with any of the values in the fields.

Code:

SELECT * FROM finance
WHERE salary > ANY (SELECT salary FROM finance WHERE salary > 5000);

Output:

ANY

5. BETWEEN

This Operator is used when there is a limit range between the values.

Code:

SELECT * FROM finance
WHERE salary BETWEEN 2500 AND 5000;

Output:

BETWEEN

Conclusion

Therefore, in this article, we have learned how to use different operators in SQL Statements with an implementation. Also, we came across data filtering from the database using respective conditions as the operators allow checking two expressions to be the same.

Recommended Articles

We hope that this EDUCBA information on “SQL Operators” was beneficial to you. You can view EDUCBA’s recommended articles for more information.

  1. SQL Set Operators
  2. SQL Clauses
  3. PostgreSQL ORDER BY
  4. SQL String Operators
Primary Sidebar
Footer
Follow us!
  • EDUCBA FacebookEDUCBA TwitterEDUCBA LinkedINEDUCBA Instagram
  • EDUCBA YoutubeEDUCBA CourseraEDUCBA Udemy
APPS
EDUCBA Android AppEDUCBA iOS App
Blog
  • Blog
  • Free Tutorials
  • About us
  • Contact us
  • Log in
Courses
  • Enterprise Solutions
  • Free Courses
  • Explore Programs
  • All Courses
  • All in One Bundles
  • Sign up
Email
  • [email protected]

ISO 10004:2018 & ISO 9001:2015 Certified

© 2025 - EDUCBA. ALL RIGHTS RESERVED. THE CERTIFICATION NAMES ARE THE TRADEMARKS OF THEIR RESPECTIVE OWNERS.

EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA

*Please provide your correct email id. Login details for this Free course will be emailed to you

Loading . . .
Quiz
Question:

Answer:

Quiz Result
Total QuestionsCorrect AnswersWrong AnswersPercentage

Explore 1000+ varieties of Mock tests View more

EDUCBA
Free Data Science Course

Hadoop, Data Science, Statistics & others

By continuing above step, you agree to our Terms of Use and Privacy Policy.
*Please provide your correct email id. Login details for this Free course will be emailed to you
EDUCBA Login

Forgot Password?

🚀 Limited Time Offer! - 🎁 ENROLL NOW