Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
4 views6 pages

Operators

The document provides an overview of various operators in MS SQL Server 2022, categorized into arithmetic, comparison, logical, and pattern matching operators. It details specific operators such as addition, subtraction, greater than, less than, AND, OR, NOT, and LIKE, along with their functionalities and usage. Additionally, it mentions operators related to set operations like UNION, INTERSECT, and EXCEPT.

Uploaded by

Madhu Reddy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views6 pages

Operators

The document provides an overview of various operators in MS SQL Server 2022, categorized into arithmetic, comparison, logical, and pattern matching operators. It details specific operators such as addition, subtraction, greater than, less than, AND, OR, NOT, and LIKE, along with their functionalities and usage. Additionally, it mentions operators related to set operations like UNION, INTERSECT, and EXCEPT.

Uploaded by

Madhu Reddy
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 6

MS SQL SERVER 2022

Presented By:
Nikhil Analytics Team
(Operators)
Operators
• ARITHMETIC
• COMPARISON
• LOGICAL
• IN/NOT IN
• BETWEEN
• LIKE
• UNION (discussed at the time of joins)

• UNION ALL (discussed at the time of joins)

• INTERSECT (discussed at the time of joins)

• EXCEPT (discussed at the time of joins)


Operators(contd..)
• ARITHMETIC
+ -- Plus / also act as concatenation operator
- -- Minus
* -- Multiplication
/ -- Division
Operators(contd..)
• COMPARISON
Greater than -- > GT
Less than -- < LT
Equal -- = EQ
Not Equal -- <> NE
Greater Than Equal -- >= GE
Lesser Than Equal -- <= LE
Operators(contd..)
• LOGICAL
AND
OR
NOT

• IN
• NOT IN

• BETWEEN
Operators(contd..)
• LIKE
Pattern Matching
Wildcard Meaning
% Any string of zero or more
characters.
_ (underscore) Any single character.
[] Any single character within the
specified range (for example,
[a-f]) or set (for example, [abcdef]).
[^] Any single character not within the
specified range (for example, [^a -
f]) or set (for example, [^abcdef])

You might also like