sql server2000 里面如何实现oracle10g的 wmsys.wm_concat 的功能?
------解决方案--------------------
wmsys.wm_concat 这个功能是干什么用的!
------解决方案--------------------
行列转换是吧!
------解决方案--------------------
- SQL code
-------合并表-------/****************************************************************************************************************************************************** 合并分拆表数据 整理人:中国风(Roy) 日期:2008.06.06 ******************************************************************************************************************************************************/ --> --> (Roy)生成測試數據 if not object_id('Tab') is null drop table Tab Go Create table Tab([Col1] int,[Col2] nvarchar(1)) Insert Tab select 1,N'a' union all select 1,N'b' union all select 1,N'c' union all select 2,N'd' union all select 2,N'e' union all select 3,N'f' Go 合并表: SQL2000用函数: go if object_id('F_Str') is not null drop function F_Str go create function F_Str(@Col1 int) returns nvarchar(100) as begin declare @S nvarchar(100) select @S=isnull(@S+',','')+Col2 from Tab where [email protected] return @S end go Select distinct Col1,Col2=dbo.F_Str(Col1) from Tab go SQL2005用XML: 方法1: select a.Col1,Col2=stuff(b.Col2.value('/R[1]','nvarchar(max)'),1,1,'') from (select distinct COl1 from Tab) a Cross apply (select COl2=(select N','+Col2 from Tab where Col1=a.COl1 For XML PATH(''), ROOT('R'), TYPE))b 方法2: select a.Col1,COl2=replace(b.Col2.value('/Tab[1]','nvarchar(max)'),char(44)+char(32),char(44)) from (select distinct COl1 from Tab) a cross apply (select Col2=(select COl2 from Tab where COl1=a.COl1 FOR XML AUTO, TYPE) .query(' <Tab> {for $i in /Tab[position() <last()][email protected] return concat(string($i),",")} {concat("",string(/Tab[last()][email protected]))} </Tab>') )b SQL05用CTE: ;with roy as(select Col1,Col2,row=row_number()over(partition by COl1 order by COl1) from Tab) ,Roy2 as (select COl1,cast(COl2 as nvarchar(100))COl2,row from Roy where row=1 union all select a.Col1,cast(b.COl2+','+a.COl2 as nvarchar(100)),a.row from Roy a join Roy2 b on a.COl1=b.COl1 and a.row=b.row+1) select Col1,Col2 from Roy2 a where row=(select max(row) from roy where Col1=a.COl1) order by Col1 option (MAXRECURSION 0) 生成结果: /* Col1 COl2 ----------- ------------ 1 a,b,c 2 d,e 3 f (3 行受影响) */
------解决方案--------------------
------解决方案--------------------
- SQL code
if object_id('tb') is not null drop table tbcreate table tb(检验员 varchar(10), 打印日期 nvarchar(10), 漏检次数 int)goinsert tb select '罗邦卫','2009-7-31',2 insert tb select '梅强','2009-7-31',2 insert tb select '周林江','2009-7-31',1 insert tb select '周强','2009-7-31',3 insert tb select '陈刚','2009-8-1',1 insert tb select '陈华林','2009-8-1',2 insert tb select '董加军','2009-8-1',1 insert tb select '罗邦卫','2009-8-1',2 insert tb select '方文祥','2009-8-1',2 insert tb select '周林江','2009-8-1',2 insert tb select '周强','2009-8-1',1 insert tb select '陈刚','2009-8-3',1 insert tb select '陈华林','2009-8-3', 1 insert tb select '陈杰','2009-8-3',3 insert tb select '李林峰','2009-8-3',1 godeclare @sql nvarchar(4000)set @sql='select 检验员' --变量必须初始化赋值select @[email protected]+ N','+quotename(打印日期)+ N'=max(case 打印日期 when '+quotename(打印日期,N'''')+ --quotename(打印日期)=[打印日期],打印日期(打印日期,N'''')='2009-8-3'...... N' then 漏检次数 else 0 end)' from tb group by 打印日期 --按日期分组print @sqlexec(@sql+N' from tb group by 检验员')go检验员 2009-7-31 2009-8-1 2009-8-3陈刚 0 1 1陈华林 0 2 1陈杰 0 0 3董加军 0 1 0方文祥 0 2 0李林峰 0 0 1罗邦卫 2 2 0梅强 2 0 0周林江 1 2 0周强 3 1 0