Logical Operations #
Following basic logical operations are supported:
NOT
expr- expr
AND
expr
select not true;
[false]
select true and true;
[true]
select 0 and 1;
[false]
Following basic logical operations are supported:
NOT
exprAND
exprselect not true;
[false]
select true and true;
[true]
select 0 and 1;
[false]