java怎么分组查询,如何使用Java有效地对SQL查询输出进行分组?

I am doing SQL query using core Java on three different tables with LEFT join and getting following output:

pId pName sId sName gId gName

1 p1 11 s1 111 g1

1 p1 11 s1 112 g2

2 p2 12 s2 null null

3 p3 13 s3 113 g3

Now I want to group this as following:

[{

"pId": 1,

"pname": "p1",

"sub": [{

"sId": 11,

"sName": "s1",

"grades": [{

"gId": 111,

"gName": "g1"

}, {

"gId": 112,

"gName": "g2"

}]

}]

}, {

"pId": 2,

"pname": "p2",

"sub": [{

"sId": 12,

"sName": "s2",

"grades": []

}]

}, {

"pId": 3,

"pname": "p3",

"sub": [{

"sId": 13,

"sName": "s3",

"grades": [{

"gId": 113,

"gName": "g3"

}]

}]

}]

To group this as above mentioned output, I am doing following process in my Java code:

1) Iterate all pId

2) Iterate all sId in pId

3) Iterate all gId in sId

This takes lot of time to execute and get desired output.

Is there any way to get it done in faster way with minimum iterations?

Any help/workaround will be greatly appreciated.

I have tried hashmap over pId but still could not find a solution

解决方案

Pseudo-code:

String sql = "SELECT pId, pName, sId, sName, gId, gName" +

" FROM ..." +

" LEFT JOIN ..." +

" WHERE ..." +

" ORDER BY pId, sId, gId"; //

rs = stmt.executeQuery(sql)

List processes = new ArrayList<>();

Process p = null;

SubProcess s = null;

while (rs.next()) {

if (p == null || p.getId() != rs.getInt("pId")) {

p = new Process(rs.getInt("pId"), rs.getString("pName"));

processes.add(p);

s = null; // force new SubProcess

}

if (rs.getInt("sId") == 0/*null*/)

continue; // skip, no SubProcess found for Process

if (s == null || s.getId() != rs.getInt("sId")) {

s = new SubProcess(rs.getInt("sId"), rs.getString("sName"));

p.addSubProcess(s);

}

if (rs.getInt("gId") == 0/*null*/)

continue; // skip, no Grade found for SubProcess

Grade g = new Grade(rs.getInt("gId"), rs.getString("gName"));

s.addGrade(g);

}

// Now generate JSON from 'processes' list

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值