欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

分组后合并成员

时间:2023-06-30

【问题】

I am new to jasper、I am having a problem to design a report which does the same like group_concat() function in my sql.、 i am using a sql server so cannot use that function in my query.

My input is something like this.

Col1   Col2    Col3     Col410       1234    Sam     A12G310       1234    Sam     K78DE10       1234    Sam     MAT1220      1456    Tom     E12F420      1456    Tom     KAR3R20      3217    Tom      G45G4

my output should be like 

Col1   Col2    Col3     Col410       1234    Sam     A12G3 , K78DE , MAT12  20      1456    Tom     E12F4 , KAR3R20      3217    Tom      G45G4

I am trying to create a variable using the below expression.

Class : java.lang.String ,  CALCULATION: Nothing , Incrementype: Group , Incrementgroup: Col2

expression is  $F{Col4} + "," + $F{Col4}

this one is not working.、Could you please help me on this please

【回答】

SQL 和 Jasper 应该都能实现 group_concat 函数,只是代码比较难写。可以试试用 SPL 来辅助 Jasper。

如下代码就能实现与 group_concat 等价的功能,而且与数据库无关:

A1=mySqlDB.query("select * from   table1")、group(Col1,Col2,Col3;~.(Col4).concat@c():Col4)

集算器提供 JDBC 接口与 Jasper 集成,与数据库的用法相同,详情参考【JasperReport 调用 SPL 脚本】

 

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。