if object_id('[table1]') is not null drop table [table1]
go
create table [table1]([tid] int,[tname] varchar(4))
insert [table1]
select 1,'zhao' union all
select 2,'qian' union all
select 3,'sun'
if object_id('[table2]') is not null drop table [table2]
go
create table [table2]([tid] int,[zhao] varchar(1),[qian] varchar(1),[sun] varchar(1))
insert [table2]
select 1,'a','b','c' union all
select 2,'d','e','f' union all
select 3,'g','h','i'--select * from [table1]
--select * from [table2]declare @sql nvarchar(max)
set @sql='select a.tid,tValue=case a.tname '
select @sql=@sql+' when '''+tname+''' then b.'+tname
from(select distinct tname from table1) t
set @sql=@sql+' end
from table1 a join table2 b
on a.tid=b.tid'
--print @sql
exec(@sql)--测试结果:
/*
tid         tValue
----------- ------
1           a
2           e
3           i(3 row(s) affected)
*/

解决方案 »

  1.   

    普通行列转换 
    问题:假设有张学生成绩表(tb)如下: 
    姓名 课程 分数 
    张三 语文 74 
    张三 数学 83 
    张三 物理 93 
    李四 语文 74 
    李四 数学 84 
    李四 物理 94 
    想变成(得到如下结果): 
    姓名 语文 数学 物理 
    ---- ---- ---- ---- 
    李四 74  84  94 
    张三 74  83  93 
    ------------------- 
    */ create table tb(姓名 varchar(10) , 课程 varchar(10) , 分数 int) 
    insert into tb values('张三' , '语文' , 74) 
    insert into tb values('张三' , '数学' , 83) 
    insert into tb values('张三' , '物理' , 93) 
    insert into tb values('李四' , '语文' , 74) 
    insert into tb values('李四' , '数学' , 84) 
    insert into tb values('李四' , '物理' , 94) 
    go --SQL SERVER 2000 静态SQL,指课程只有语文、数学、物理这三门课程。(以下同) 
    select 姓名 as 姓名 , 
      max(case 课程 when '语文' then 分数 else 0 end) 语文, 
      max(case 课程 when '数学' then 分数 else 0 end) 数学, 
      max(case 课程 when '物理' then 分数 else 0 end) 物理 
    from tb 
    group by 姓名 --SQL SERVER 2000 动态SQL,指课程不止语文、数学、物理这三门课程。(以下同) 
    declare @sql varchar(8000) 
    set @sql = 'select 姓名 ' 
    select @sql = @sql + ' , max(case 课程 when ''' + 课程 + ''' then 分数 else 0 end) [' + 课程 + ']' 
    from (select distinct 课程 from tb) as a 
    set @sql = @sql + ' from tb group by 姓名' 
    exec(@sql) --SQL SERVER 2005 静态SQL。 
    select * from (select * from tb) a pivot (max(分数) for 课程 in (语文,数学,物理)) b --SQL SERVER 2005 动态SQL。 
    declare @sql varchar(8000) 
    select @sql = isnull(@sql + ',' , '') + 课程 from tb group by 课程 
    exec ('select * from (select * from tb) a pivot (max(分数) for 课程 in (' + @sql + ')) b') --------------------------------- /* 
    问题:在上述结果的基础上加平均分,总分,得到如下结果: 
    姓名 语文 数学 物理 平均分 总分 
    ---- ---- ---- ---- ------ ---- 
    李四 74  84  94  84.00  252 
    张三 74  83  93  83.33  250 
    */ --SQL SERVER 2000 静态SQL。 
    select 姓名 姓名, 
      max(case 课程 when '语文' then 分数 else 0 end) 语文, 
      max(case 课程 when '数学' then 分数 else 0 end) 数学, 
      max(case 课程 when '物理' then 分数 else 0 end) 物理, 
      cast(avg(分数*1.0) as decimal(18,2)) 平均分, 
      sum(分数) 总分 
    from tb 
    group by 姓名 --SQL SERVER 2000 动态SQL。 
    declare @sql varchar(8000) 
    set @sql = 'select 姓名 ' 
    select @sql = @sql + ' , max(case 课程 when ''' + 课程 + ''' then 分数 else 0 end) [' + 课程 + ']' 
    from (select distinct 课程 from tb) as a 
    set @sql = @sql + ' , cast(avg(分数*1.0) as decimal(18,2)) 平均分 , sum(分数) 总分 from tb group by 姓名' 
    exec(@sql) --SQL SERVER 2005 静态SQL。 
    select m.* , n.平均分 , n.总分 from 
    (select * from (select * from tb) a pivot (max(分数) for 课程 in (语文,数学,物理)) b) m, 
    (select 姓名 , cast(avg(分数*1.0) as decimal(18,2)) 平均分 , sum(分数) 总分 from tb group by 姓名) n 
    where m.姓名 = n.姓名 --SQL SERVER 2005 动态SQL。 
    declare @sql varchar(8000) 
    select @sql = isnull(@sql + ',' , '') + 课程 from tb group by 课程 
    exec ('select m.* , n.平均分 , n.总分 from 
    (select * from (select * from tb) a pivot (max(分数) for 课程 in (' + @sql + ')) b) m , 
    (select 姓名 , cast(avg(分数*1.0) as decimal(18,2)) 平均分 , sum(分数) 总分 from tb group by 姓名) n 
    where m.姓名 = n.姓名') drop table tb    ------------------ 
    ------------------ /* 
    问题:如果上述两表互相换一下:即表结构和数据为: 
    姓名 语文 数学 物理 
    张三 74  83  93 
    李四 74  84  94 
    想变成(得到如下结果): 
    姓名 课程 分数 
    ---- ---- ---- 
    李四 语文 74 
    李四 数学 84 
    李四 物理 94 
    张三 语文 74 
    张三 数学 83 
    张三 物理 93 
    -------------- 
    */ create table tb(姓名 varchar(10) , 语文 int , 数学 int , 物理 int) 
    insert into tb values('张三',74,83,93) 
    insert into tb values('李四',74,84,94) 
    go --SQL SERVER 2000 静态SQL。 
    select * from 

    select 姓名 , 课程 = '语文' , 分数 = 语文 from tb 
    union all 
    select 姓名 , 课程 = '数学' , 分数 = 数学 from tb 
    union all 
    select 姓名 , 课程 = '物理' , 分数 = 物理 from tb 
    ) t 
    order by 姓名 , case 课程 when '语文' then 1 when '数学' then 2 when '物理' then 3 end --SQL SERVER 2000 动态SQL。 
    --调用系统表动态生态。 
    declare @sql varchar(8000) 
    select @sql = isnull(@sql + ' union all ' , '' ) + ' select 姓名 , [课程] = ' + quotename(Name , '''') + ' , [分数] = ' + quotename(Name) + ' from tb' 
    from syscolumns 
    where name! = N'姓名' and ID = object_id('tb') --表名tb,不包含列名为姓名的其它列 
    order by colid asc 
    exec(@sql + ' order by 姓名 ') --SQL SERVER 2005 动态SQL。 
    select 姓名 , 课程 , 分数 from tb unpivot (分数 for 课程 in([语文] , [数学] , [物理])) t --SQL SERVER 2005 动态SQL,同SQL SERVER 2000 动态SQL。 -------------------- 
    /* 
    问题:在上述的结果上加个平均分,总分,得到如下结果: 
    姓名 课程  分数 
    ---- ------ ------ 
    李四 语文  74.00 
    李四 数学  84.00 
    李四 物理  94.00 
    李四 平均分 84.00 
    李四 总分  252.00 
    张三 语文  74.00 
    张三 数学  83.00 
    张三 物理  93.00 
    张三 平均分 83.33 
    张三 总分  250.00 
    ------------------ 
    */ select * from 

    select 姓名 as 姓名 , 课程 = '语文' , 分数 = 语文 from tb 
    union all 
    select 姓名 as 姓名 , 课程 = '数学' , 分数 = 数学 from tb 
    union all 
    select 姓名 as 姓名 , 课程 = '物理' , 分数 = 物理 from tb 
    union all 
    select 姓名 as 姓名 , 课程 = '平均分' , 分数 = cast((语文 + 数学 + 物理)*1.0/3 as decimal(18,2)) from tb 
    union all 
    select 姓名 as 姓名 , 课程 = '总分' , 分数 = 语文 + 数学 + 物理 from tb 
    ) t 
    order by 姓名 , case 课程 when '语文' then 1 when '数学' then 2 when '物理' then 3 when '平均分' then 4 when '总分' then 5 end 
    drop table tb 一道sql的题目:原表结构如下 
    学号 姓名 性别 年龄 
    2061403 张三 男 21 
    2061404 李四 男 22 
    2061405 王五 男 21 
    2061406 陈六 男 23 
    修改后的结构为: 
    学号 2061403 2061404 2061405 2061406 
    姓名 张三 李四 王五 陈六 
    性别 男 男 男 男 
    年龄 21 22 21 23 
    请问用sql语句怎么做啊?谢谢!
    If object_id('ta') is not null 
        Drop table ta
    Go
    Create table ta(xh int,xm nvarchar(2),xb nvarchar(1),nl int)
    Go
    Insert into ta
    select 2061403,'张三','男',21 union all
    select 2061404,'李四','男',22 union all
    select 2061405,'王五','男',21 union all
    select 2061406,'陈六','男',23 
    Go
    --Start
    select id=identity(int,1,1),xh into # from ta
    declare @s varchar(8000)
    declare @s1 varchar(8000)
    declare @s2 varchar(8000)
    declare @s3 varchar(8000)
    select @s = isnull(@s+',','') + '[col'+ltrim(id)+'] = max(case when xh = '+ltrim(xh) +' then ltrim(xh) else null end)'
    from #set @s = 'select ''学号'' as col0 ,'+ @s + ' from ta  union all ' select @s1 = isnull(@s1+',','') + '[col'+ltrim(id)+'] = max(case when xh = '+ltrim(xh) +' then xm else null end)'
    from #
     
    set @s1 = 'select ''姓名'' as col0 ,'+ @s1 + ' from ta   union all ' 
    select @s2 = isnull(@s2+',','') + '[col'+ltrim(id)+'] = max(case when xh = '+ltrim(xh) +' then xb else null end)'
    from #
    set @s2 = 'select ''性别'' as col0 ,'+ @s2 + ' from ta   union all ' 
    select @s3 = isnull(@s3+',','') + '[col'+ltrim(id)+'] = max(case when xh = '+ltrim(xh) +' then ltrim(nl) else null end)'
    from #
     
    set @s3 = 'select ''年龄'' as col0 ,'+ @s3 + ' from ta ' exec(@s+@s1+@s2+@s3)
    drop table #--Result:
    /*
    col0 col1         col2         col3         col4         
    ---- ------------ ------------ ------------ ------------ 
    学号   2061403      2061404      2061405      2061406
    姓名   张三           李四           王五           陈六
    性别   男            男            男            男
    年龄   21           22           21           23
      

  2.   

    --> --> (Roy)生成測試數據
     
    if not object_id('T1') is null
    drop table T1
    Go
    Create table T1([tId] int,[tName] nvarchar(4))
    Insert T1
    select 1,N'zhao' union all
    select 2,N'qian' union all
    select 3,N'sun'
    Go
    --> --> (Roy)生成測試數據
     
    if not object_id('T2') is null
    drop table T2
    Go
    Create table T2([tId] int,[zhao] nvarchar(1),[qian] nvarchar(1),[sun] nvarchar(1))
    Insert T2
    select 1,N'a',N'b',N'c' union all
    select 2,N'd',N'e',N'f' union all
    select 3,N'g',N'h',N'i'
    Go
    declare @s nvarchar(4000)
    select @s=isnull(@s+',','')+quotename([tName]) from t1
    exec('with c as (Select * from T2  unpivot (Name for tName in('+@s+')) t3)select c.* from c join t1 on c.tid=t1.tid and c.tName=t1.tName ')tId         Name tName
    ----------- ---- --------------------------------------------------------------------------------------------------------------------------------
    1           a    zhao
    2           e    qian
    3           i    sun(3 行受影响)
      

  3.   

    本帖最后由 fcuandy 于 2008-11-06 21:26:15 编辑
      

  4.   

    没看明白意思,用APPLY可以根据左边表字段的值确定右边的输入。
      

  5.   

    可否用一行select语句搞定?我这里不能用@sql变量。:(
      

  6.   


    引用把水绕长安的话:
    简单来说,apply可以理解为join 
    但是,join时,右端输入如果是子查询是不可能引用左端内容的。 apply就对此做了突破。并且把连接条件放到了子查询里面。 
     select * from ta a inner join tb b on a.id=b.id select * from ta a 
    cross apply (select * from tb where id=a.id) b 
    再注意一点: 当右端输入的行集依赖于或者说跟具左端行的值来确定的话,join是很难做到的。而apply就做了语法突破。 
    即,右端行集本身的产生可以引用左端输入, 而join是不支持的,要自己写语句转换。有些情况下,join是做不到的。 
      

  7.   

    你这个只能使用如楼上的动态SQL来完成,不能只用你说的一行select完成.