字符串Concat在一个组中

时间:2011-02-10 12:33:07

标签: sql-server tsql group-by string-concatenation

  

可能重复:
  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

我们如何通过查询在一个组中执行此操作?

0 个答案:

没有答案