Operators

You can work using arithmetic, logical and comparison operators.

Arithmetic operators

You can find a list of the arithmetic operators you can use.

+ Addition operator (also concatenates strings)

-Subtraction operator

*Multiplication operator

/Division operator

( ) Parentheses (used to group operands in expressions)

=Assignment operator

** Exponentiation operator

Logical Operators

You can find a list of the logical operators you can use.

and Logical conjunction on two expressions

or Logical disjunction on two expressions

Comparison Operators

You can find a list of the comparison operators you can use.

<> Not equal to

== Equal to

>= Greater or equal to

<= Less than or equal to

< Less than

> Greater than

like

notlike