SQL

如何将下面的数据
no  type  value
1   2     小红
2   3     小白
3   2     哄哄
4   5    小黑
变成
no   type1  type2  type3
1    小红    null    null
2    哄哄    null    null
3    null   小白     null
4    null   null   小黑这样的sql语句要怎样写

解决方案 »

  1.   

    为什么小红不是TYPE2
      

  2.   

    这个上下两个type是没有必然的联系的,只是一个名称罢了
      

  3.   

    select no,(case when type=2 then value end) as type1 
    (case when type=3 then value end) as type2 
    (case when type=5 then value end) as type3
    from tb
    group by no
      

  4.   

    报出这样的问题“type在选择列表中无效,因为它没有包含在聚合函数或GROUP BY子句中。”
      

  5.   

     (不要高估你的汉语表达能力或者我的汉语理解能力)
       建议你列出你的表结构,并提供测试数据以及基于这些测试数据的所对应正确结果。
       参考一下这个贴子的提问方式http://topic.csdn.net/u/20091130/20/8343ee6a-417c-4c2d-9415-fa46604a00cf.html
       
       1. 你的 create table xxx .. 语句
       2. 你的 insert into xxx ... 语句
       3. 结果是什么样,(并给以简单的算法描述)
       4. 你用的数据库名称和版本(经常有人在MS SQL server版问 MySQL)
       
       这样想帮你的人可以直接搭建和你相同的环境,并在给出方案前进行测试,避免文字描述理解上的误差。
      

  6.   

    行转列的问题,case when...group by 解决