Training
Module
Evaluate Boolean expressions to make decisions in C# - Training
Learn the operators and techniques required to evaluate and compare values in your decision statements.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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.
!
(bang sign) operatorApplies to: Databricks SQL
Databricks Runtime
Returns the logical NOT
of a Boolean expression. This operator is a synonym for not
operator.
!expr
expr
: A BOOLEAN
expression.A BOOLEAN.
> SELECT !true;
false
> SELECT !false;
true
> SELECT !NULL;
NULL
Training
Module
Evaluate Boolean expressions to make decisions in C# - Training
Learn the operators and techniques required to evaluate and compare values in your decision statements.