This page contains logical operators supported by e6data.
Last updated 7 months ago
Returns true if both the values evaluate to true.
> select colA from table1 where colB > x AND colB <> y;
Returns true if any of the values evaluate to true.
> select colA from table1 where colB > x OR colB = null;
Returns true if the value is false.
> select colA from table1 where colB NOT y;
The following truth table demonstrates the boolean output of AND and OR:
AND
OR:
true
false