• Oracle行列转换


    两种简单的行列转置


    1、固定列数的行列转换

    student subject grade
    --------- ---------- --------
    student1 语文 80
    student1 数学 70
    student1 英语 60
    student2 语文 90
    student2 数学 80
    student2 英语 100
    ……
    转换为
    语文 数学 英语
    student1 80 70 60
    student2 90 80 100
    ……
    语句如下:

    1 select student, 
    2        sum(decode(subject,'语文', grade,null)) "语文",
    3        sum(decode(subject,'数学', grade,null)) "数学",
    4        sum(decode(subject,'英语', grade,null)) "英语"
    5 from table
    6 group by student;

    2、不定列行列转换

    c1 c2
    --- -----------
    1 我
    1 是
    1 谁
    2 知
    2 道
    3 不
    ……
    转换为
    1 我是谁
    2 知道
    3 不

    这一类型的转换必须借助于PL/SQL来完成,这里给一个例子

     1 CREATE OR REPLACE FUNCTION get_c2(tmp_c1 NUMBER)
     2     RETURN VARCHAR2
     3 IS
     4     Col_c2 VARCHAR2(4000);
     5 BEGIN
     6     FOR cur IN (SELECT c2 FROM t WHERE c1=tmp_c1) LOOP
     7         Col_c2 := Col_c2||cur.c2;
     8     END LOOP;
     9     Col_c2 := rtrim(Col_c2,1);
    10     RETURN Col_c2;
    11 END;
    12 /
    13 SQL> select distinct c1 ,get_c2(c1) cc2 from table; 

    3、wmsys.wm_concat 多行转换成列

    table  test (id varchar2(10),address varchar2(10) );
    数据如下:
            id        address
                 11                       aaaa
                  11                      wwww
                  11                       dddd
                  22                       wsws
                  22                       cccc
       想得到这样的数据:
                 id        address
                     11                       aaaa,wwww,dddd             
                     22                       wsws,cccc

    1 select id, wmsys.wm_concat(distnct address) address from test group by id;
  • 相关阅读:
    利用游标循环插入数据
    局部临时表
    表值函数
    SQL2000自动备份压缩删除数据库
    insert select、select into 的用法
    判断每个页面是否登以及捕捉页面异常录解决方案
    合并查询结果
    字符串分隔(转自别处)
    生成行号
    C#计算字符串中子串出现次数的另类方法
  • 原文地址:https://www.cnblogs.com/kingxiaozi/p/3716139.html
Copyright © 2020-2023  润新知