Comparison Operators
The following table describes each comparison operator.
Operator | Description | Example |
---|---|---|
= |
Equality test. |
[Last Name] = "Smith" |
<> |
Inequality test. |
[Role] <> "End-User" |
> |
Greater than. |
[Revenue] > 5000 |
< |
Less than. |
[Probability] < .7 |
>= |
Greater than or equal to. |
[Revenue] >= 5000 |
<= |
Less than or equal to. |
[Probability] <= .7 |