Operators Flashcards
Comparison Operator <
less than
Comparison Operator >
greater than
Comparison Operator <=
less than or equal to
Comparison Operator >=
greater than or equal to
Comparison Operator =
equal
Comparison Operator <>
not equal
Comparison Operator !=
not equal ( != operator is converted to <> in the parser stage)
Name All Comparison Operators
< less than, > greater than, = greater than or equal to, = equal, <> or != not equal, BETWEEN greater than or equal to and lower than or equal to
Mathematical Operator +
addition
Mathematical Operator -
subtraction
Mathematical Operator *
multiplication
Mathematical Operator /
division (integer division truncates results)
Mathematical Operator %
modulo (remainder)
Mathematical Operator ^
exponentiation
Mathematical Operator |/
square root