db2 如何将一个表的某个字段的多个记录值,合并成一个记录值在此字段中显示?

时间:2021-03-02 15:04:46
 CREATE TABLE tb(id int, temp varchar(10)) 

insert into tb(1,'aa'); 
insert into tb(1,'bb'); 
insert into tb(2,'ccc'); 
insert into tb(2,'dddd'); 

          id          temp 
----------- -------------------- 

输出效果: 1          aa,bb 

          2        ccc,dddd 

3 个解决方案

#1


只有存储过程才可以实现吗?
大家给一个能够直接运行的存储过程啊。谢谢

#2


怎么没人理啊

#3


参照此贴
http://topic.csdn.net/u/20090926/22/43301a7a-00eb-4072-b0c1-c4158ed5a868.html

#1


只有存储过程才可以实现吗?
大家给一个能够直接运行的存储过程啊。谢谢

#2


怎么没人理啊

#3


参照此贴
http://topic.csdn.net/u/20090926/22/43301a7a-00eb-4072-b0c1-c4158ed5a868.html