SQL server 把多条记录结果合并成一条记录
表 users 的属性有 name, dept_id等。
我们要查找部门所属的员工有哪些,使用以下代码块,查询结果为:
select dept.dname 部门名称, users.name 员工名称 from dept, users where dept.did = users.dept_id;
那么,要把同部门的员工放到同一行,我们需要怎么做呢?如下:
我们要查找各部门的所有员工,结果如下:
可以使用以下语句:
select -- distinct 是因为部门编号会出现多次,待会会有多余的记录出现 distinct dept_id , [员工] =( -- 假设此处的部门编号 dept_id 为 num1 -- 把【员工】看成一个变量,变量的值为部门编号 为 num1 的所有员工名 select [name] + ',' -- 名字间用逗号隔开 from users A -- 表A where A.dept_id = B.dept_id -- 判断部门编号是否为 num1,是的话就添加该员工名 for xml Path('')) from users B; -- 表B
再通过多表查询,可以得到以下结果:
(dept 表的 did属性为 users 表的 dept_id属性的外键,通过外键我们可以找到部门名称)
使用的SQL语句为:
select dept.dname as 部门名称, 员工 from ( select -- distinct 是因为部门编号会出现多次,待会会有多余的记录出现 distinct dept_id , [员工] =( -- 假设此处的部门编号 dept_id 为 num1 -- 把【员工】看成一个变量,变量的值为部门编号 为 num1 的所有员工名 select [name] + ',' -- 名字间用逗号隔开 from users A -- 表A where A.dept_id = B.dept_id -- 判断部门编号是否为 num1,是的话就添加该员工名 for xml Path('')) from users B -- 表B ) as C , dept -- 把上面的查询结果作为表C where C.dept_id = dept.did;