SQL Logical Operators
NuoDB supports the following logical operators: AND
, OR
, NOT
.
NuoDB uses a three-valued logic system with true
, false
, and null
, which represents unknown. See the following tables.
a | b | a AND b | a OR b |
---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
a | NOT a |
---|---|
|
|
|
|
|
|
The operators AND
and OR
are commutative, that is, you can switch the left and right operand without affecting the result.