Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to:
Databricks SQL
Databricks Runtime
Returns the logical NOT of a Boolean expression. This operator is a synonym for not operator.
Syntax
!expr
Arguments
expr: ABOOLEANexpression.
Returns
A BOOLEAN.
Examples
> SELECT !true;
false
> SELECT !false;
true
> SELECT !NULL;
NULL