Microsoft SQL Server
Funkcje agregujące ciąg w programie SQL Server
Szukaj…
Używanie STUFF do agregacji ciągów
Mamy tabelę uczniów z SubjectId. Tutaj warunkiem jest konkatenacja na podstawie podmiotu.
Wszystkie wersje SQL Server
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, stuff(( select concat( ',', studentname) from #yourstudent y where y.subjectid = u.subjectid for xml path('')),1,1, '')
from #yourstudent u
group by subjectid
String_Agg dla agregacji ciągów
W przypadku SQL Server 2017 lub vnext możemy użyć wbudowanej STRING_AGG dla tej agregacji. Dla tego samego stołu studenckiego
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
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow