0

我有一个查询,其中我从通过子查询形成的表中提取列的总和。

行中的一些东西:

select temp.mySum as MySum from (select sum(myColumn) from mySchema.myTable) temp;

但是,当 temp.mySum 为空时,我不希望 MySum 为空。相反,当 temp.mySum 为空时,我希望 MySum 携带字符串“值不可用”。

因此,我尝试以下列方式使用合并:

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.

此消息是由于下面第一个答案中提到的 coalesce 函数的参数 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。我想在报告中显示“价值不可用”。

这怎么可能实现?

谢谢阅读!

4

1 回答 1

2

合并的论点必须兼容。如果第一个是数字(mySum可能是)而第二个是字符串,则情况并非如此。

例如,下面的PubLib doco有一个表格,表明各种类型之间的兼容性,至少对于我使用的 DB2(大型机)而言 - 毫无疑问,iSeries 和 LUW 变体也有类似的限制。

您可以尝试类似的方法coalesce(temp.mySum, 0),或者将第一个参数转换为带有类似char(). 这些中的任何一个都应该起作用,因为它们使两个参数兼容。

于 2012-05-14T12:17:17.327 回答