2012-06-27 112 views
3

我有這樣的一個表:PIVOT分層數據

 
Id Name    parentId 
-------------------------------- 
5 Rollers    2 
2 Paint and Brushes 1 
1 Decorating   NULL 

使用PIVOT或任何其他單一的查詢,我能得到這樣的輸出:

 
cat1id cat1name  cat2id cat2name    cat3id cat3Name 
------------------------------------------------------------------------ 
1  Decorating 2   Paint and Brushes 5   Rollers 
+0

看到這個[此](http://stackoverflow.com/questions/11070158/sql-server-column-to-row/11070643#11070643)的問題,類似於你。 – 03Usr

回答

5

您可以使用PIVOTUNPIVOT以及執行此操作的遞歸查詢。

靜態版本,在這裏你硬編碼值的轉化:

;with hd (id, name, parentid, category) 
as 
(
    select id, name, parentid, 1 as category 
    from yourtable 
    where parentid is null 
    union all 
    select t1.id, t1.name, t1.parentid, hd.category +1 
    from yourtable t1 
    inner join hd 
    on t1.parentid = hd.id 
), 
unpiv as 
(
    select value, 'cat_'+cast(category as varchar(5))+'_'+ col col_name 
    from 
    (
    select cast(id as varchar(17)) id, name, parentid, category 
    from hd 
) src 
    unpivot 
    (
    value for col in (id, name) 
) un 
) 
select [cat_1_id], [cat_1_name], 
        [cat_2_id], [cat_2_name], 
        [cat_3_id], [cat_3_name] 
from unpiv 
pivot 
(
    max(value) 
    for col_name in ([cat_1_id], [cat_1_name], 
        [cat_2_id], [cat_2_name], 
        [cat_3_id], [cat_3_name]) 
) piv 

SQL Fiddle with Demo

動力版本,在運行時生成的值:

;with hd (id, name, parentid, category) 
as 
(
    select id, name, parentid, 1 as category 
    from yourtable 
    where parentid is null 
    union all 
    select t1.id, t1.name, t1.parentid, hd.category +1 
    from yourtable t1 
    inner join hd 
    on t1.parentid = hd.id 
) 
select category categoryNumber 
into #temp 
from hd 

DECLARE @cols AS NVARCHAR(MAX), 
    @query AS NVARCHAR(MAX) 

select @cols = STUFF((SELECT distinct ',' + quotename('cat_'+cast(CATEGORYNUMBER as varchar(10))+'_'+col) 
        from #temp 
        cross apply (select 'id' col 
           union all 
           select 'name' col) src 
      FOR XML PATH(''), TYPE 
      ).value('.', 'NVARCHAR(MAX)') 
     ,1,1,'') 

set @query = ';with hd (id, name, parentid, category) 
       as 
       (
       select id, name, parentid, 1 as category 
       from yourtable 
       where parentid is null 
       union all 
       select t1.id, t1.name, t1.parentid, hd.category +1 
       from yourtable t1 
       inner join hd 
        on t1.parentid = hd.id 
      ), 
       unpiv as 
       (
       select value, ''cat_''+cast(category as varchar(5))+''_''+ col col_name 
       from 
       (
        select cast(id as varchar(17)) id, name, parentid, category     
        from hd 
       ) src 
       unpivot 
       (
        value for col in (id, name) 
       ) un 
      ) 
       select '[email protected]+' 
       from unpiv 
       pivot 
       (
       max(value) 
       for col_name in ('[email protected]+') 
       ) piv' 

execute(@query) 

drop table #temp 

SQL Fiddle with Demo

The Re sults是相同的兩個:

| CAT_1_ID | CAT_1_NAME | CAT_2_ID |  CAT_2_NAME | CAT_3_ID | CAT_3_NAME | 
-------------------------------------------------------------------------------- 
|  1 | Decorating |  2 | Paint and Brushes |  5 | Rollers |