T SQL - Conconate Column Multiple Times

2019-04-02 07:57发布

问题:

So I have the following table:

ID | Product_Image
300 | /300-01.jpg
300 | /300-02.jpg
301 | /301.jpg
302 | /302.jpg

There could be an unlimited number of images per ID. I need to concatenate all the image references into one column, and I am having trouble generating the following output:

ID | Product Images
300 | /300-01.jpg; /300-02.jpg;
301 | /301.jpg;

回答1:

-- cte with test data
;with T (ID, Product_Image) as
(
select 300, '/300-01.jpg' union all
select 300, '/300-02.jpg' union all
select 301, '/301.jpg' union all
select 302, '/302.jpg'
)

select
  T.ID,
  (select T2.Product_Image+'; '
   from T as T2 
   where T.ID = T2.ID
   for xml path(''), type).value('.[1]', 'nvarchar(max)') as Product_Images
from T
group by T.ID

Result:

ID   Product_Images
---- -------------------------
300  /300-01.jpg; /300-02.jpg; 
301  /301.jpg; 
302  /302.jpg; 


标签: tsql pivot