You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Prefix Operator: Not

Description

The NOT operator can be applied to a terminal expression, to only return results that do not match the terminal expression.

Not is often used in conjunction with groups of expressions surrounded within parentheses.

Examples

Entity type is not script

Not EntityType = Script

Entity type is an incident and does not have a status of Open or ReOpened:

EntityType = Incident AND NOT (Status = Open OR Status = "ReOpened")

See Also

  • No labels