SlideShare a Scribd company logo
2
Most read
3
Most read
4
Most read
SPECIAL OPERATORS




                    1
Special Operators



   BETWEEN…AND operator

Determines whether the value of an
expression falls within a specified range
of values.


Syntax:
 expr [NOT] BETWEEN value1 AND value2
                                                     2
Special Operators



   IN operator

Determines whether the value of an
expression is equal to any of several
values in a specified list.


Syntax:
 expr [NOT] IN (value1, value2, …)
                                                         3
Special Operators



IS NULL operator

Checks for missing data or null values.


 Syntax:
  expr IS [NOT] NULL



                                                     4
Special Operators



  LIKE operator

Used in conjunction with wildcard
characters to match character string
patterns.

 Syntax:
  expr [NOT] LIKE ‘string pattern’
                                                         5
Special Operators



Wildcard Characters


% - used to match zero or more
    characters.
_ - used to match a single character.




                                                   6

More Related Content

PDF
Array data structure
PPTX
Operator overloading
PDF
Little o and little omega
PPTX
Normal forms
PPTX
Hamiltonian path
DOCX
8-Practice problems on operator precedence parser-24-05-2023.docx
PPTX
List in Python
Array data structure
Operator overloading
Little o and little omega
Normal forms
Hamiltonian path
8-Practice problems on operator precedence parser-24-05-2023.docx
List in Python

What's hot (20)

PPTX
Linear and Binary search
PPTX
Functional dependency
PPTX
Strings in Java
PPTX
Measuring algorithm performance
PPTX
Lexical analysis - Compiler Design
PPT
1.Role lexical Analyzer
PPTX
Group By, Having Clause and Order By clause
PDF
Expression trees
PPTX
Arrays in Java
PPTX
Key and its different types
PPTX
Tuple in python
PDF
Python - gui programming (tkinter)
PPT
Aggregate functions
PDF
Strings in python
PPTX
Petri Nets: Properties, Analysis and Applications
PPTX
Indexing structure for files
PPT
Bitwise operators
PPTX
Digital Search Tree
PPTX
set operators.pptx
PPT
Stack a Data Structure
Linear and Binary search
Functional dependency
Strings in Java
Measuring algorithm performance
Lexical analysis - Compiler Design
1.Role lexical Analyzer
Group By, Having Clause and Order By clause
Expression trees
Arrays in Java
Key and its different types
Tuple in python
Python - gui programming (tkinter)
Aggregate functions
Strings in python
Petri Nets: Properties, Analysis and Applications
Indexing structure for files
Bitwise operators
Digital Search Tree
set operators.pptx
Stack a Data Structure
Ad

Viewers also liked (20)

PPT
B trees dbms
DOC
PDF
Unit 1 basic concepts of DBMS
DOC
Comenzi fox pro
PPT
Sql operators & functions 3
PPTX
Sql Basics And Advanced
PPT
SQL : introduction
PPT
Basic DBMS ppt
PPTX
Dbms slides
PPT
Database management system presentation
PPT
Docking from a z in visual fox pro 9
DOC
Comenzi fox pro
PPTX
Visual foxpro
PDF
Visual fox pro manual del programador
PPTX
como crear un proyecto en visual fox
PDF
Guía de Visual Fox Pro 9.0
PDF
Imp notes dbms
PPSX
Formularios En Visual Fox Pro
PDF
E book visual foxpro
B trees dbms
Unit 1 basic concepts of DBMS
Comenzi fox pro
Sql operators & functions 3
Sql Basics And Advanced
SQL : introduction
Basic DBMS ppt
Dbms slides
Database management system presentation
Docking from a z in visual fox pro 9
Comenzi fox pro
Visual foxpro
Visual fox pro manual del programador
como crear un proyecto en visual fox
Guía de Visual Fox Pro 9.0
Imp notes dbms
Formularios En Visual Fox Pro
E book visual foxpro
Ad

More from Rosie Jane Enomar (7)

PPTX
IEEE 802 standards
PPTX
Chapter 6 - Networking
PPTX
Software development
PDF
Java Inheritance
PPTX
Aggregate functions
PPTX
PPTX
Types of Reaction
IEEE 802 standards
Chapter 6 - Networking
Software development
Java Inheritance
Aggregate functions
Types of Reaction

Special operators in Database

  • 2. Special Operators BETWEEN…AND operator Determines whether the value of an expression falls within a specified range of values. Syntax: expr [NOT] BETWEEN value1 AND value2 2
  • 3. Special Operators IN operator Determines whether the value of an expression is equal to any of several values in a specified list. Syntax: expr [NOT] IN (value1, value2, …) 3
  • 4. Special Operators IS NULL operator Checks for missing data or null values. Syntax: expr IS [NOT] NULL 4
  • 5. Special Operators LIKE operator Used in conjunction with wildcard characters to match character string patterns. Syntax: expr [NOT] LIKE ‘string pattern’ 5
  • 6. Special Operators Wildcard Characters % - used to match zero or more characters. _ - used to match a single character. 6