|
Comparison operators generate a Boolean value based on the relative values
of two source values.
Operators
| Operator |
Meaning |
Type |
| = |
Equal to |
All |
| != |
Not equal to |
All |
| <> |
Not equal to |
All |
| > |
Greater than |
All except Boolean |
| < |
Less than |
All except Boolean |
| >= |
Greater than or equal to |
All except Boolean |
| <= |
Less than or equal to |
All except Boolean |
| In |
In a list of values |
All except Boolean and StringList |
| Contains |
In a StringList |
StringList |
Examples
| Expression |
Result |
| "Server" > "Assist" |
True |
| "Server" = "Assist" |
False |
| '01 March 2006' < '01 April 2006' |
True |
| 3 In (1, 2, 4, 5) |
False |
| PerformanceObjectList Contains "System" |
True |
|