name     mobile         score       
test 13312345678 6
test 13312345678     5
test 13312345678     4
test 13312345678 3
怎样把它变成横向的
name   mobile        score1 score2 score3 score4
test   13312345678     6      5      4       3
但是score是在另外一个表中的数据,拜托,急

解决方案 »

  1.   

    create function dbo.fn_b(@name varchar(10),@mobile varchar(15))
    returns varchar(1000)
    as 
    begin
    declare @s varchar(1000)
    set @s=''
    select @s=@s+[score]+' ' from tb where name=@name and mobile=@mobile
    return (@s)
    endselect name,mobile,dbo.fn_b(name,mobile)
    from tb
    group by name,mobile;
      

  2.   

    ------------------------------------
    -- Author:happyflystone 
    -- Version:V1.001  
    -- Date:2009-03-12 23:02:06
    -------------------------------------- Test Data: ta
    If object_id('ta') is not null 
        Drop table ta
    Go
    Create table ta(name nvarchar(4),mobile bigint ,score int)
    Go
    Insert into ta
     select 'test',13312345678,6 union all
     select 'test',13312345678,5 union all
     select 'test',13312345678,4 union all
     select 'test',13312345678,3 
    Go
    --Start
    declare @s varchar(8000)
    select rid=identity(int,1,1),* into tmp from ta
    select @s = isnull(@s+',','') + '[score'+ltrim(rid) +'] = max(case when rid = '+ltrim(rid) +' then score else 0 end) '
    from tmp exec('select name,mobile,'+@s+' from tmp group by name,mobile') drop table tmp
    --Result:
    /*name mobile               score1      score2      score3      score4      
    ---- -------------------- ----------- ----------- ----------- ----------- 
    test 13312345678          6           5           4           3
    */
    --End 
      

  3.   

    这种一般都要用函数处理好一些;不必要列出score1 score2 score3 score4 等为这段名,因为第一组name,mobile后面有多少个score是不确定的;
      

  4.   

    --sql 2000静态SQL
    select name , mobile ,
      max(case px when 1 then score else 0 end) score1,
      max(case px when 2 then score else 0 end) score2,
      max(case px when 3 then score else 0 end) score3,
      max(case px when 4 then score else 0 end) score4
    from
    (
      select t.* , px = (select count(1) from tb where name = t.name and mobile = t.mobile and score > t.score) + 1 from tb t
    ) m
    group by name , mobile--sql 2000动态SQL
    declare @sql varchar(8000)
    set @sql = 'select name , mobile '
    select @sql = @sql + ' , max(case px when ''' + cast(px as varchar) + ''' then score else 0 end) [score' + cast(px as varchar) + ']'
    from (select distinct px from (select t.* , px = (select count(1) from tb where name = t.name and mobile = t.mobile and score > t.score) + 1 from tb t)m) as a
    set @sql = @sql + ' from (select t.* , px = (select count(1) from tb where name = t.name and mobile = t.mobile and score > t.score) + 1 from tb t) m group by name , mobile'
    exec(@sql) --sql 2005静态SQL
    select name , mobile ,
      max(case px when 1 then score else 0 end) score1,
      max(case px when 2 then score else 0 end) score2,
      max(case px when 3 then score else 0 end) score3,
      max(case px when 4 then score else 0 end) score4
    from
    (
      select * , px = row_number() over(partition by name , mobile order by score desc) from tb
    ) m
    group by name , mobile
      

  5.   

    处理起来一样的,只要用到表的JOIN
      

  6.   

    谢谢这么多人关心
    select a.name,a.mobile,a.starttime, a.endtime,c.score from Users a,UsersqAnswer c,recordproblem d where (a.id = c.userid and d.titleid = c.titleid and d.type = c.type) order by a.name,d.type,d.titleid asc 
    这个是我纵向读数据的SQL语句
      

  7.   

    --sql 2000静态SQL
    select name , mobile ,
      max(case px when 1 then score else 0 end) score1,
      max(case px when 2 then score else 0 end) score2,
      max(case px when 3 then score else 0 end) score3,
      max(case px when 4 then score else 0 end) score4
    from
    (
      select t2.* , px = (select count(1) from 
      (
        select a.name,a.mobile,a.starttime, a.endtime,c.score from Users a,UsersqAnswer c,recordproblem d where (a.id = c.userid and d.titleid = c.titleid and d.type = c.type) 
      ) t1 where t1.name = t2.name and t1.mobile = t2.mobile and t1.score > t2.score) + 1 from 
      (
        select a.name,a.mobile,a.starttime, a.endtime,c.score from Users a,UsersqAnswer c,recordproblem d where (a.id = c.userid and d.titleid = c.titleid and d.type = c.type) 
      ) t2
    ) m
    group by name , mobile--sql 2000动态SQL
    declare @sql varchar(8000)
    set @sql = 'select name , mobile '
    select @sql = @sql + ' , max(case px when ''' + cast(px as varchar) + ''' then score else 0 end) [score' + cast(px as varchar) + ']'
    from (select distinct px from (  select t2.* , px = (select count(1) from 
      (
        select a.name,a.mobile,a.starttime, a.endtime,c.score from Users a,UsersqAnswer c,recordproblem d where (a.id = c.userid and d.titleid = c.titleid and d.type = c.type) 
      ) t1 where t1.name = t2.name and t1.mobile = t2.mobile and t1.score > t2.score) + 1 from 
      (
        select a.name,a.mobile,a.starttime, a.endtime,c.score from Users a,UsersqAnswer c,recordproblem d where (a.id = c.userid and d.titleid = c.titleid and d.type = c.type) 
      ) t2
    ) m ) as a
    set @sql = @sql + ' from (  select t2.* , px = (select count(1) from 
      (
        select a.name,a.mobile,a.starttime, a.endtime,c.score from Users a,UsersqAnswer c,recordproblem d where (a.id = c.userid and d.titleid = c.titleid and d.type = c.type) 
      ) t1 where t1.name = t2.name and t1.mobile = t2.mobile and t1.score > t2.score) + 1 from 
      (
        select a.name,a.mobile,a.starttime, a.endtime,c.score from Users a,UsersqAnswer c,recordproblem d where (a.id = c.userid and d.titleid = c.titleid and d.type = c.type) 
      ) t2
    ) m group by name , mobile'
    exec(@sql) --sql 2005静态SQL
    select name , mobile ,
      max(case px when 1 then score else 0 end) score1,
      max(case px when 2 then score else 0 end) score2,
      max(case px when 3 then score else 0 end) score3,
      max(case px when 4 then score else 0 end) score4
    from
    (
      select a.name,a.mobile,a.starttime, a.endtime,c.score,px = row_number() over(partition by name , mobile order by score desc) from Users a,UsersqAnswer c,recordproblem d where (a.id = c.userid and d.titleid = c.titleid and d.type = c.type) 
    ) m
    group by name , mobile
      

  8.   

    --不知道你的name,mobile是否在各个表都有,把表别名加上.--sql 2005静态SQL
    select name , mobile ,
      max(case px when 1 then score else 0 end) score1,
      max(case px when 2 then score else 0 end) score2,
      max(case px when 3 then score else 0 end) score3,
      max(case px when 4 then score else 0 end) score4
    from
    (
      select a.name,a.mobile,a.starttime, a.endtime,c.score,px = row_number() over(partition by a.name , a.mobile order by c.score desc) from Users a,UsersqAnswer c,recordproblem d where (a.id = c.userid and d.titleid = c.titleid and d.type = c.type) 
    ) m
    group by name , mobile
      

  9.   

    其他几个表里没有的,就在Users表里
      

  10.   

    我发现楼上的好像是根据score的值去变化的,但是score的值不是确定的,以name,mobile为主,有时候score值可能是重复的,就是有name,mobile有几个score的值,下面多久有几个score + N,不是定死的只有4个
      

  11.   

    你没有看到有动态的SQL语句吗?静态的指数量固定为1,2,3,4个.动态的就不是固定的.你看看下面的行列转换.
    /*
    标题:普通行列转换(version 2.0)
    作者:爱新觉罗.毓华(十八年风雨,守得冰山雪莲花开)
    时间:2008-03-09
    地点:广东深圳
    说明:普通行列转换(version 1.0)仅针对sql server 2000提供静态和动态写法,version 2.0增加sql server 2005的有关写法。问题:假设有张学生成绩表(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 课程
    set @sql = '[' + @sql + ']'
    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 enddrop table tb
      

  12.   

    动态的我试了,就是相同score的值的时候,只显示一个值
      

  13.   

    相同的话,sql 2000需要使用临时表.sql 2005可以用row_number(),你用哪个版本?
      

  14.   

    另一个表里都有多少个score呀,如果不确定,那么只能用动态sql处理了。