字串聚合的字串聚合
對於 SQL Server 2017 或 vnext,我們可以使用內建的 STRING_AGG 進行此聚合。對於同一個學生表,
create table #yourstudent (subjectid int, studentname varchar(10))
insert into #yourstudent (subjectid, studentname) values
( 1 ,'Mary' )
,( 1 ,'John' )
,( 1 ,'Sam' )
,( 2 ,'Alaina')
,( 2 ,'Edward')
select subjectid, string_agg(studentname, ',') from #yourstudent
group by subjectid