Skip to main content

not

not 介绍

not expr - 逻辑非。

Examples:

> SELECT not true;
false
> SELECT not false;
true
> SELECT not NULL;
NULL

Since: 1.0.0