Microsoft SQL Server
String Aggregate funzioni in SQL Server
Ricerca…
Utilizzo di STUFF per l'aggregazione di stringhe
Abbiamo una tabella degli studenti con SubjectId. Qui il requisito è di concatenare basato su subjectId.
Tutte le versioni di 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 per String Aggregation
In caso di SQL Server 2017 o vnext, possiamo utilizzare STRING_AGG incorporato per questa aggregazione. Per lo stesso tavolo dello studente,
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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow