KSQL中的语法跟SQL是不一样的 KSQL中不能把not in连着写,正确的格式应该是:not 概念别名.关系别名 in (XXXX) ``` select a.* from sa_opPerson a where not (a.sCode in ('123','456','789')) ```