我有一个查询,其中我从通过子查询形成的表中获取列的总和。
有些内容:
select temp.mySum as MySum from (select sum(myColumn) from mySchema.myTable) temp;
但是,当temp.mySum为null时,我不希望MySum为null。相反,当temp.mySum为空时,我希望MySum携带字符串“值不可用”。
因此我尝试以下面的方式使用coalesce:
select coalesce(temp.mySum, 'value not available') as MySum from (select sum(myColumn) from mySchema.myTable) temp;
但是上面的查询会抛出错误消息:
Message: The data type, length or value of argument "2" of routine "SYSIBM.COALESCE" is incorrect.
此消息是由于合并函数的参数1和2之间的数据类型不兼容,如下面第一个答案中所述。
但是,我直接在Jasper中使用此查询将值发送到Excel工作表报告:
hashmap.put("myQuery", this.myQuery);
JasperReport jasperReportOne = JasperCompileManager.compileReport(this.reportJRXML);
JasperPrint jasperPrintBranchCd = JasperFillManager.fillReport(jasperReportOne , hashmap, con);
jprintList.add(jasperPrintOne);
JRXlsExporter exporterXLS = new JRXlsExporter();
exporterXLS.setParameter(JRExporterParameter.JASPER_PRINT_LIST, jprintList);
exporterXLS.exportReport();
在excel表中,当值不可用时,我将值变为null。我想在报告中显示“值不可用”。
如何实现这一目标?
感谢阅读!
答案 0 :(得分:2)
合并的参数必须兼容。如果第一个是数字(因为mySum
可能是)而第二个是字符串,则情况并非如此。
例如,以下PubLib doco有一个表,表明各种类型之间的兼容性,至少对于我使用的DB2(大型机),毫无疑问,对于iSeries和LUW变体也存在类似的限制
您可以尝试使用coalesce(temp.mySum, 0)
之类的内容,或将第一个参数转换为类似char()
的字符串。其中任何一个都应该有效,因为它们使两个参数兼容。