java.sql.SQLException: Error in cell A3 null at com.esproc.jdbc.InternalStatement.executeJDBC(Unknown Source:205) at
dfx 文件:
我的数据源表:
统计逻辑是:
分组字段【省份】、汇总字段【整数】
程序运行的参数截图:
数据源 250w 条数据,全部计算时候报错:
我排查过程,将计算的数据源范围缩小,只算这周的日期数据,能正确出数据。
我开始怀疑字段是不是有空缺,但是用 Mongo 命令验证,发现没有空缺记录。
db.getCollection(‘ff80808178df1f450178e515c0c70014’).find({“ff80808178df1f450178e518e605001b”: {“$in”: [null], “$exists”: true}})
db.getCollection(‘ff80808178df1f450178e515c0c70014’).find({“ff80808179823fef0179a247e141002b”: {“$in”: [null], “$exists”: true}})
db.getCollection(‘ff80808178df1f450178e515c0c70014’).find({“ff80808178df1f450178e518e605001b”: {“$exists”: false}})
db.getCollection(‘ff80808178df1f450178e515c0c70014’).find({“ff80808179823fef0179a247e141002b”: {“$exists”: false}})
用上面四句代码也没有查询出来记录。
这个是不是数据库中有条数限制?