科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道多表查询,组合结果问题

多表查询,组合结果问题

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

多表查询,组合结果问题

作者:csdn 来源:csdn 2009年12月22日

关键字: ORACLE 问答

  • 评论
  • 分享微博
  • 分享邮件

多表查询,组合结果问题

多表查询,组合结果问题
2个表
table1 表结构 id,name
table2 表结构 id,title,ct_point

table1数据大概如下
[id],[name]
1  人员1
2  人员2
3  人员3

table2数据大概如下
[id],[title],[ct_point]
1      A      100
2      A        35
2      B        40
2      C        45
3      C        11
3      B        22

查询结果为
[id],[name],[title],[ct_point]
1    人员1    A          100
2    人员2    A,B,C      35,40,45
3    人员3    C,B        11,22

也就是当 table1数据在 table2里有多个对应数据时
把他们已字符串形式加起来,中间用 , 来间隔
这个大概怎么实现啊?

 

wm_concat不负责排序
如果有排序上的要求,改成sys_connect_by_path
select a.id,a.name,wm_concat(b.title),wm_concat(b.ct_point)
from table1 a,table2 b
where a.id=b.id
group by a.id,a.name

select a.id,a.name,
  substr(max(sys_connect_by_path(b.title,',')),2)title,
  substr(max(sys_connect_by_path(b.ct_point,',')),2)ct_point
from table1 a,(
  select table2.*,row_number()over(partition by id order by title)rn
  from table2)b
where a.id=b.id
start with b.rn=1
connect by prior b.rn=b.rn-1 and prior b.id=b.id
group by a.id,a.name

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章