Logical Operators
This page contains logical operators supported by e6data.
<expr1> AND <expr2>
> select colA from table1 where colB > x AND colB <> y;<expr1> OR <expr2>
> select colA from table1 where colB > x OR colB = null;NOT <expr>
> select colA from table1 where colB NOT y;a
b
a AND b
a OR b
Last updated
