!
(bang sign) operator
Applies to:
Databricks SQL
Databricks Runtime
Returns the logical NOT
of a Boolean expression.
Returns
A BOOLEAN.
This operator is a synonym for not operator.
Examples
> SELECT !true;
false
> SELECT !false;
true
> SELECT !NULL;
NULL