Arithmetic Operators
+: Addition-: Subtraction*: Multiplication/: Division%: Modulo
Comparison Operators
=,==: Equal to!=,<>: Not equal to<: Less than>: Greater than<=: Less than or equal to>=: Greater than or equal to
Logical Operators
AND: Logical ANDOR: Logical ORNOT: Logical NOT
BETWEEN Operator
a BETWEEN b AND c: Equivalent toa >= b AND a <= ca NOT BETWEEN b AND c: Equivalent toa < b OR a > c
IN Operator
a IN (x, y, z): Checks ifais equal to any value in the lista NOT IN (x, y, z): Checks ifais not equal to any value in the list
LIKE Operator
a LIKE pattern: Pattern matching with%(any string) and_(any single character)a NOT LIKE pattern: Negation of LIKE
IS NULL Operator
a IS NULL: Checks ifais NULLa IS NOT NULL: Checks ifais not NULL
Conditional Operator
a ? b : c: Ifais true, returnsb, otherwise returnsc
Concatenation Operator
||: Concatenates strings