I got a short question on Apache kylin (version 1.5.3). I have built a cube successfully. Now I want to use the 'insight' tab of kylin to submit some queries. I have a table with two columns (id[varchar], abc[int]).
Queries like
select id, abc
from table
where abc = 12;
are working fine. But
select id, abc
from table
where abc != 12;
returns an error:
Lexical error at line 3, column 11. Encountered: "!" (33), after : ""
Does anyone knows the right lexical term of 'not'?
Thank you in advance, Søren