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 logical negation of the argument. This operator is an alias for !
(bang sign) operator.
not expr
expr
: A BOOLEAN expression.
A BOOLEAN.
> SELECT not true;
false
> SELECT not false;
true
> SELECT not NULL;
NULL