Closed mripley closed 2 months ago
It appears that nothing besides = is supported
XDB> create table t1 (c1 int); Query OK, 0 row affected (2.217 ms) XDB> insert into t1 values (0),(1); Query OK, 2 rows affected (0.254 ms) XDB> select c1 from t1 where c1 > 10; ERROR 3: Miss = XDB> select c1 from t1 where c1 < 10; ERROR 3: Miss =
Will support more operators in next release.
support: >, >=, <, <=, !=, <> support 'c1 < 10', and '10 > c1'.
It appears that nothing besides = is supported