新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
SQLserver合并分拆表的實際應用代碼
以下的文章主要向大家描述的是SQL server合并分拆表的實際操組方法的描述,本文是以SQL server合并分拆表的實際操作的應用代碼的方式來引出其實際操作步驟,以下就是文章的主要內(nèi)容描述。

創(chuàng)新互聯(lián)專注于中大型企業(yè)的成都網(wǎng)站設計、成都網(wǎng)站制作和網(wǎng)站改版、網(wǎng)站營銷服務,追求商業(yè)策劃與數(shù)據(jù)分析、創(chuàng)意藝術與技術開發(fā)的融合,累計客戶近千家,服務滿意度達97%。幫助廣大客戶順利對接上互聯(lián)網(wǎng)浪潮,準確優(yōu)選出符合自己需要的互聯(lián)網(wǎng)運用,我們將一直專注品牌網(wǎng)站設計和互聯(lián)網(wǎng)程序開發(fā),在前進的路上,與客戶一起成長!
合并分拆表
(Roy)生成測試數(shù)據(jù)
- 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用函數(shù):
- 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 Col1=@Col1
- 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('
- {for $i in /Tab[position()
- {concat("",string(/Tab[last()]/@COl2))}
- ')
- )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 行受影響)
- */
以上的相關內(nèi)容就是對SQL server合并分拆表的方法的介紹,望你能有所收獲。
【編輯推薦】
- SQL Server 字符串在實際操作中的注意事項
- SQL Server 連接字符串的一些聲明
- SQL Server 連接字符串的實現(xiàn)步驟
- SQL Server數(shù)據(jù)庫中可用格式字符串干什么?
- SQL server 2000 標準版、企業(yè)版的不同之處
文章標題:SQLserver合并分拆表的實際應用代碼
分享鏈接:http://www.dlmjj.cn/article/cdejdso.html


咨詢
建站咨詢
