Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
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