Microsoft SQL Server
SQL Server의 문자열 집계 함수
수색…
문자열 집계에 STUFF 사용
SubjectId가있는 Student 테이블이 있습니다. 여기서 요구 사항은 subjectId를 기반으로 연결하는 것입니다.
모든 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
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
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow