可能重复:
Simulating group_concat MySQL function in MS SQL Server 2005?
以下是我的员工表
EmployeeId BossId Name
======================================
1 5 John
2 5 Jane
3 4 Smith
4 4 Marie
我希望获得以下输出
BossId Employees
====================
5 John, Jane
4 Smith, Marie
我们如何通过查询在一个组中执行此操作?