Not

The NOT keyword inverses (negates) a condition.

This is the Negation within the boolean logical operations.

This function is SQL compatible. For more information about SQL compatibility, see our documentation.

Returns the inversed condition.

If the condition evaluates to unknown, the inverse (NOT unknown) is also unknown.

NOT condition

NOT false => true

NOT true => false

Last updated