Type |
Operator |
Function |
Mathematical operators |
+ |
Addition of two numeric values |
|
- |
Subtraction of a numeric value |
|
* |
Multiplication of two numeric values |
|
/ |
Division of two numeric values |
Logical operators |
AND |
Logical AND of two Boolean values |
|
&& |
Logical AND of two Boolean values |
|
││ |
Logical OR of two Boolean values |
|
OR |
Logical OR of two Boolean values |
|
NOT |
Logical NOT of a Boolean value |
|
! |
Logical NOT of a Boolean value |
Other operators |
< |
Less than (any value) |
|
<= |
Less than or equal to (any value) |
|
> |
Greater than (any value) |
|
>= |
Greater than or equal to (any value) |
|
== |
Equal to (any value) |
|
!= |
Not equal to (any value) |
|
<> |
Not equal to (any value) |
|
% |
Modulus arithmetic of two numeric values |
|
- |
Negation of a numeric value |