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 bitwise NOT
of expr
.
~ expr
expr
: An integral numeric type expression.
The result type matches the type of expr
.
> SELECT ~ 0;
-1