如何做交叉表.如下例.姓名      科目       成績
----------------------------
張三      語文        80 
張三      數學        85 
張三      外語        90
李四      語文        81 
李四      數學        86 
李四      外語        91
王五      語文        82 
王五      數學        88 
王五      外語        95
將上表中的數據轉換成如下格式:         語文    數學   外語
張三      80      85     90
李四      81      86     91
王五      82      88     95
 

解决方案 »

  1.   

    周经问题固定列max(decod('科目','语文',成绩)) 语文
    的方法实现不固定列参考此贴
    http://topic.csdn.net/u/20080416/11/910e40c1-60f1-441f-8b0f-19a969d30f77.html
      

  2.   

    固定列select 姓名,
    max(decod('科目','语文',成绩,0)) 语文 ,
    max(decod('科目','数学',成绩,0)) 数学,
    max(decod('科目','外语',成绩,0)) 外语
    from test
    group by   姓名
      

  3.   

    对,按2楼的
    固定列,就用decode
    非固定列,要用到存储过程
      

  4.   

    非固定列的,还可以用PL/SQL,下面摘抄的一个例子,希望对你有帮助,没自己调试过
    [Q]如何实现行列转换
    [A]1、固定列数的行列转换

    student subject grade
    ---------------------------
    student1 语文 80
    student1 数学 70
    student1 英语 60
    student2 语文 90
    student2 数学 80
    student2 英语 100
    ……
    转换为 
    语文 数学 英语
    student1 80 70 60
    student2 90 80 100
    ……
    语句如下:
    select student,sum(decode(subject,'语文', grade,null)) "语文",
    sum(decode(subject,'数学', grade,null)) "数学",
    sum(decode(subject,'英语', grade,null)) "英语"
    from table
    group by student 
    2、不定列行列转换

    c1 c2
    --------------
    1 我
    1 是
    1 谁
    2 知
    2 道
    3 不
    ……
    转换为
    1 我是谁
    2 知道
    3 不
    这一类型的转换必须借助于PL/SQL来完成,这里给一个例子
    CREATE OR REPLACE FUNCTION get_c2(tmp_c1 NUMBER) 
    RETURN VARCHAR2 
    IS 
    Col_c2 VARCHAR2(4000); 
    BEGIN
    FOR cur IN (SELECT c2 FROM t WHERE c1=tmp_c1) LOOP 
    Col_c2 := Col_c2||cur.c2; 
    END LOOP; 
    Col_c2 := rtrim(Col_c2,1);
    RETURN Col_c2; 
    END;
    /
    SQL> select distinct c1 ,get_c2(c1) cc2 from table;即可