Siebel Developer's Reference > Operators, Expressions, and Conditions >

Comparison Operators


The table below describes the purpose of each comparison operator and gives an example of how it is used.

Operator
Purpose
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

Siebel Developer's Reference