日期:2014-05-17 浏览次数:20580 次
select a.书刊,a.起止日期,
stuff((select ','+b.订阅科室
from tushu b
where b.书刊=a.书刊 and b.起止日期=a.起止日期
for xml path('')),1,1,'') '订阅科室'
from tushu a
group by a.书刊,a.起止日期
use [TestDB]
go
if object_id('tempdb..#t') is not null
drop table #t;
select N'中华护理' [书刊],N'1—6月' [起止日期],N'骨一科' [订阅科室]
into #t
union all select N'中华护理',N'1—6月',N'骨二科'
union all select N'中华护理',N'1—6月',N'骨三科'
union all select N'中华护理',N'1—6月',N'外一科'
union all select N'中华护理',N'6—12月',N'外二科'
union all select N'中华护理',N'6—12月',N'信息科'
union all select N'中华护理',N'6—12月',N'院办'
union all select N'中华护理',N'6—12月',N'党办'
union all select N'中华护理',N'6—12月',N'宣传科'
union all select N'中华护理',N'1—12月',N'医教科'
union all select N'中华护理',N'1—12月',N'脑病科'
union all select N'中华护理',N'1—12月',N'医保办'
union all select N'中华护理',N'1—12月',N'脾胃病科'
union all select N'读者',N'6—12月',N'脑科'
union all select N'读者',N'6—12月',N'肺病科'
union all select N'读者',N'6—12月',N'内科'
union all select N'读者',N'1—12月',N'书记1'
union all select N'读者',N'1—12月',N'书记2'
union all select N'读者',N'1—12月',N'院长1'
union all select N'读者',N'1—12月',N'院长2'
union all select N'读者',N'1—12月',N'院长3'
select [书刊],[起止日期],
stuff((select ','+[订阅科室] from #t b where a.书刊=b.书刊 and a.起止日期=b.起止日期
for xml path('')
),1,1,'') [订阅科室]
from #t a
group by [书刊],[起止日期]
order by 1 desc