|

楼主 |
发表于 2017-11-1 16:07:57
|
显示全部楼层
对不起,发错了,我的整个是这样的,
Table table=KSQL.select("select a.* from SA_OPOrg a where a.sValidState=1 and a.sParent is null", null, "/system/data", null);
Iterator<Row> rows = table.iterator();
出现了下面的错误。
com.justep.exception.BusinessException: 编码: JUSTEP150137; 提示: 列"SA_OPOrg"不存在
之后我修改成 select a.*,a.sID as SA_OPOrg from SA_OPOrg a where a.sValidState=1 and a.sParent is null", null, "/system/data", null);
也不行
|
|