Comparison Operators
In this article
The query string may contain comparison operators listed below.
Comparison Operator | Query syntax character | Description |
Greater | > | The query result must be greater than the value specified in the “field-value” pair. |
Less | < | The query result must be less than the value specified in the “field-value” pair. |
Equal | == | The query result must be equal to the value specified in the “field-value” pair. |
Does not equal | != | The query result must not be equal to the value specified in the “field-value” pair. |
Greater or equal | >= | The query result must be greater or equal to the value specified in the “field-value” pair. |
Less or equal | <= | The query result must be less or equal to the value specified in the “field-value” pair. |