1

可能重复:
在 Microsoft SQL Server 2005 中模拟 group_concat MySQL 函数?

我有 2 个像这样

的类表:
在此处输入图像描述

学生表:
在此处输入图像描述

我想加入两张桌子,但我想得到这样的结果
ClsName StdName
A George
B Jenifer,Anjel,Alex
C Alex,Joe,Michael


怎么可能做到这一点?
实际上,对于每个班级,我都希望有一排有不同的学生姓名

4

2 回答 2

5

您应该能够使用以下内容:

select c.name ClassName,
    STUFF(( SELECT  distinct ', ' + s.name
            FROM    student s
            WHERE   c.id = s.classid
            FOR XML PATH('')
            ), 1, 2, '')  Names
from class c

结果:

ClassName | Names
A         | George
B         | Alex, Anjel, Jenifer
C         | Alex, Joe, Micheal

这是我使用的工作查询:

;with class(id, name) as
(
    select 1, 'A'
    union all
    select 2, 'B'
    union all
    select 3, 'C'
),
student(id, name, classid) as
(
    select 1, 'Alex', 3
    union all
    select 2, 'Alex', 3
    union all
    select 3, 'Alex', 3
    union all
    select 4, 'Joe', 3
    union all
    select 5, 'Micheal', 3
    union all
    select 6, 'Jenifer', 2
    union all
    select 7, 'Anjel', 2
    union all
    select 8, 'Alex', 2
    union all
    select 9, 'George', 1
)
select c.name,
    STUFF(( SELECT  distinct ', ' + s.name
            FROM    student s
            WHERE   c.id = s.classid
            FOR XML PATH('')
            ), 1, 2, '') Names
from class c
于 2013-01-03T15:34:15.697 回答
1

你可以试试这个:

SELECT 
    distinct
    S.Classid,
    (
        SELECT name + ','
        FROM Student S2
        WHERE S2.Classid = S.Classid
        FOR XML PATH('')
    ) StdName,
    C.name ClsName
FROM 
Student S INNER JOIN Class C
ON S.Classid = C.id
于 2013-01-03T15:33:15.133 回答