Logical Operations #
Following basic logical operations are supported:
NOTexpr- expr
ANDexpr
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]