NOT

Syntax:

NOT expression

 

Return Value:

Y result/N result

 
Precedence:4
Description:

NOT gives the opposite value of a boolean field, and the 32 bit bitwise complement of a number. For bitwise nots you may prefer to use the ~ operator.

 

Example:

NOT TRUE = FALSE
NOT FALSE = TRUE
NOT 7=4294967288