Comparison Operators & Functions
This page contains the Comparison operators supported by e6data.
Operator
Description
IS NULL
> select * from table where col1 IS NULL; -- true/falseIS NOT NULL
> select * from table where col1 IS NOT NULL; -- true/falseIN( value1, value2, value3...)
WHERE element IN (expr1, expr2, expr3...)> select colA from Table1 where colB in (val1, val2, val3);Last updated
