Logical and Comparison Operators

Operators Description
AND && Logical AND
OR (||) Logical OR
XOR Logical XOR
NOT (!) Logical NOT
LESS THAN < less than
GREATER THAN > greater than
LESS THAN OR EQUAL <= less than or equal to
GREATER THAN OR EQUAL >= greater than or equal to
EQUAL = equal
NOT EQUAL <> or != not equal

‘TODO’

AND

OR

XOR

NOT

LESS THAN

GREATER THAN

LESS THAN OR EQUAL

GREATER THAN OR EQUAL

EQUAL

NOT EQUAL

Table Of Contents

Previous topic

SQL Functions

Next topic

Mathematical Operators and Functions

This Page