我正在试着运行下面的代码,但是继续
查询表达式中的运行时错误3075语法错误: CCC in (686200,681400)和以前的作用域非空
代码是
DB.CreateQueryDef queryName, "SELECT * FROM HRCC WHERE CCC In (" & costCentres & ") And [Previous Scope] " & IIf(newStaff, "Is Null", "Not Is Null")发布于 2014-01-20 11:24:12
... [Previous Scope] NOT IS NULL确实是不正确的语法。
正确的语法将是... [Previous Scope] IS NOT NULL。
https://stackoverflow.com/questions/21232646
复制相似问题