行转列 表 姓名 类型 日期 备注 把类型转成列,姓名和日期一样的,合并多行备注为一行declare @s nvarchar(4000)
set @s=''
Select @s=@s+','+quotename([类型])+'=max(case when [类型]='  
   
  +quotename([类型],'''')+' then [类型] else '''' end)'
from 
  dbo.sc_kaohe group by[类型]
--select @s
  --print 'select [姓名]'+@s+' +,+[日期] from sc_kaohe group by [姓名],[日期]'
exec('select [姓名]'+@s+' ,convert(varchar(10),[日期],120) as 日期,备注 from sc_kaohe group by [姓名],convert(varchar(10),[日期],120),备注')我写成这种样式,可以运行,现在我是想把如果姓名和日期一样,不同的几行备注会合并到一行,
只想要group by [姓名],convert(varchar(10),[日期],120),后面加几行备注的叠加
如果group by [姓名],convert(varchar(10),[日期],120),备注显示的行太多

解决方案 »

  1.   


    --行列互转
    --摘自中国风博客,引用请标明内容来源
    --1、行换列
    if object_id('Class') is not  null
        drop table Class
    Go
    Create table Class(
    [Student] nvarchar(2),
    [Course] nvarchar(2),
    [Score] int)
    Insert Class
    select N'张三',N'语文',78 union all
    select N'张三',N'数学',87 union all
    select N'张三',N'英语',82 union all
    select N'张三',N'物理',90 union all
    select N'李四',N'语文',65 union all
    select N'李四',N'数学',77 union all
    select N'李四',N'英语',65 union all
    select N'李四',N'物理',85 
    Go--2000方法:
    --动态:
    declare @s nvarchar(4000)
    set @s=''
    Select @s=@s+','+quotename([Course])+'=max(case when [Course]='    
       
        +quotename([Course],'''')+' then [Score] else 0 end)'
    from 
        Class group by[Course]
    --select @s
    exec('select [Student]'+@s+' from Class group by [Student]')
    --生成静态:
    select 
        [Student],
        [数学]=max(case when [Course]='数学' then [Score] else 0 end),
        [物理]=max(case when [Course]='物理' then [Score] else 0 end),
        [英语]=max(case when [Course]='英语' then [Score] else 0 end),
        [语文]=max(case when [Course]='语文' then [Score] else 0 end) 
    from 
        Class 
    group by [Student]
    GO
    --动态:declare @s nvarchar(4000)
    Select @s=isnull(@s+',','')+quotename([Course]) from Class group by[Course]
    select @s
    exec('select * from Class pivot (max([Score]) for [Course] in('+@s+'))b')--生成静态:
    select * 
    from 
        Class 
    pivot 
        (max([Score]) for [Course] in([数学],[物理],[英语],[语文]))b--生成格式:
    /*
    Student 数学         物理         英语         语文
    ------- ----------- ----------- ----------- -----------
    李四     77          85          65          65
    张三     87          90          82          78(2 行受影响)
    */go
    --加上总成绩(学科平均分)--2000方法:
    --动态:declare @s nvarchar(4000)
    set @s=''
    Select @s=@s+','+quotename([Course])+'=max(case when [Course]='+quotename([Course],'''')+'then [Score] else 0 end)'
    from Class group by[Course]
    exec('select [Student]'+@s+',[总成绩]=sum([Score])  from Class group by [Student]')--加多一列(学科平均分用avg([Score]))生成动态:select 
        [Student],
        [数学]=max(case when [Course]='数学' then [Score] else 0 end),
        [物理]=max(case when [Course]='物理' then [Score] else 0 end),
        [英语]=max(case when [Course]='英语' then [Score] else 0 end),
        [语文]=max(case when [Course]='语文' then [Score] else 0 end),
        [总成绩]=([Score]) --加多一列(学科平均分用avg([Score]))
    from 
        Class 
    group by [Student]go--2005方法:动态:declare @s nvarchar(4000)
    Select  @s=isnull(@s+',','')+quotename([Course]) from Class group by[Course] 
    --isnull(@s+',','') 去掉字符串@s中第一个逗号exec('select [Student],'+@s+',[总成绩] from (select *,[总成绩]=sum([Score])over(partition by [Student]) from Class) a 
    pivot (max([Score]) for [Course] in('+@s+'))b ')--生成静态:select 
        [Student],[数学],[物理],[英语],[语文],[总成绩] 
    from 
        (select *,[总成绩]=sum([Score])over(partition by [Student]) from Class) a --平均分时用avg([Score])
    pivot 
        (max([Score]) for [Course] in([数学],[物理],[英语],[语文]))b 生成格式:/*
    Student 数学         物理         英语         语文         总成绩
    ------- ----------- ----------- ----------- ----------- -----------
    李四     77          85          65          65          292
    张三     87          90          82          78          337(2 行受影响)
    */go--2、列转行
     
    if not object_id('Class') is null
        drop table Class
    Go
    Create table Class([Student] nvarchar(2),[数学] int,[物理] int,[英语] int,[语文] int)
    Insert Class
    select N'李四',77,85,65,65 union all
    select N'张三',87,90,82,78
    Go--2000:动态:declare @s nvarchar(4000)
    select @s=isnull(@s+' union all ','')+'select [Student],[Course]='+quotename(Name,'''')--isnull(@s+' union all ','') 去掉字符串@s中第一个union all
    +',[Score]='+quotename(Name)+' from Class'
    from syscolumns where ID=object_id('Class') and Name not in('Student')--排除不转换的列
    order by Colid
    exec('select * from ('+@s+')t order by [Student],[Course]')--增加一个排序生成静态:
    select * 
    from (select [Student],[Course]='数学',[Score]=[数学] from Class union all 
    select [Student],[Course]='物理',[Score]=[物理] from Class union all 
    select [Student],[Course]='英语',[Score]=[英语] from Class union all 
    select [Student],[Course]='语文',[Score]=[语文] from Class)t 
    order by [Student],[Course]go
    --2005:动态:declare @s nvarchar(4000)
    select @s=isnull(@s+',','')+quotename(Name)
    from syscolumns where ID=object_id('Class') and Name not in('Student') 
    order by Colid
    exec('select Student,[Course],[Score] from Class unpivot ([Score] for [Course] in('+@s+'))b')go
    select 
        Student,[Course],[Score] 
    from 
        Class 
    unpivot 
        ([Score] for [Course] in([数学],[物理],[英语],[语文]))b
    生成格式:
    /*
    Student Course Score
    ------- ------- -----------
    李四     数学     77
    李四     物理     85
    李四     英语     65
    李四     语文     65
    张三     数学     87
    张三     物理     90
    张三     英语     82
    张三     语文     78
    */
      

  2.   

    drop table test
    go
    create table test(姓名 nvarchar(50),
    类型 varchar(30),
    日期 char(10),
    备注 varchar(30))
    insert into test values('wang','type1','1987-03-01','名称1')
    insert into test values('wang','type2','1987-03-01','名称2')
    insert into test values('wang','type3','1987-03-01','名称3')
    insert into test values('wang','type4','1987-03-01','名称4')
    insert into test values('li','type1','1987-03-01','名称')
    insert into test values('li','type2','1987-03-01','名称')
    insert into test values('li','type3','1987-03-01','名称')
    insert into test values('li','type4','1987-03-01','名称')
    insert into test values('wang','type1','1987-04-01','名称')
    insert into test values('wang','type1','1987-05-01','名称')
    insert into test values('wang','type1','1987-04-01','名称')
    insert into test values('wang','type1','1987-02-01','名称')
    select * from test
    declare @sql varchar(max)
    set @sql=''
    select @sql=@sql+',max(case 类型 when '''+类型+''' then '''+类型+''' else '''' end ) as ['+类型+']'
    from (select distinct 类型 from test ) a
    set @sql='select 姓名,日期,备注=stuff((select '',''+ 备注 from test c where c.姓名=b.姓名 and b.日期=c.日期 for xml path('''')),1,1,'''')'
    +@sql+'from test b group by 姓名,日期'
    print @sql
    exec (@sql)
      

  3.   

    实现 了,可以帮我解释一下=stuff((select ','+ 备注 from test c where c.姓名=b.姓名 and b.日期=c.日期 for xml path('')),1,1,''),  for xml path('') 1,1,这里是什么意思吗,谢谢 s
      

  4.   

    实现 了,可以帮我解释一下=stuff((select ','+ 备注 from test c where c.姓名=b.姓名 and b.日期=c.日期 for xml path('')),1,1,''), for xml path('') 1,1,这里是什么意思吗,谢谢 s
      

  5.   


    這個是可以將多行數據合併成一行的xml數據,再用Stuff將XML數據轉成字符串類型,并把前面的','給刪除了.就可以得到你想要的數據,這個方法等同于:
    declare @sql nvarchar(max)
    select @sql=isnull(@sql+',','')+字段 from 表或declare @sql nvarchar(max)
    set @sql=''
    select @sql=@sql+字段 from 表
    set @sql=stuff(@sql,1,1,'')
      

  6.   

    declare @sql nvarchar(max)
    select @sql=isnull(@sql+',','')+字段 from 表或declare @sql nvarchar(max)
    set @sql=''
    select @sql=@sql+','+字段 from 表
    set @sql=stuff(@sql,1,1,'')