各位大哥:
有问题如下:
有表X:
KEY    A     B      C      D        E     F     G      H    I     J  ...........
----------------------------------------------------------------------------------------
K1   人数    30    金额   3000   手续费  700               提成  1000
K2   数量    100   单价   50                   税金   700
.
.
.
.用一条SQL语句实现,将KEY为k1的一行转换到表Y中
表Y:
 A       B
----------------------------
人数    30
金额    3000
手续费  700
提成    1000或将KEY为K2的一行转换为:表Y:
A         B
----------------------------------
数量    100
单价    50
税金    700
谢谢!!

解决方案 »

  1.   

    update y
    set (人数,金额,手续费,提成)=
     (select a,b from X where Key=k1 
      union all select c,d from X where Key=k1 
      union all select e,f from X where Key=k1 
      union all select g,h from X where Key=k1  )
      

  2.   

    X表中这样的记录每天有2000行呢!而且每行都在本行内进行一个相当复杂的计算,比而D=B*I-G-J ,等等,并且每一行的计算方法基本不相同,或者讲第一行都有一个唯一的计算公式,所以只能建成这样的一个表,大家讨论一下,还有什么更好的办法???
      

  3.   

    Insert all 
      into Y(A,B) values (A,B)
      into Y(A,B) values (C,D)
      into Y(A,B) values (E,F)
      into Y(A,B) values (G,H)
      ........
    select KEY,A,B,C,D,E,F,G,H  ........
      from x
    where KEY='K1';
      

  4.   

    hevin:谢谢,
    还有一个问题: X表中的A,B,C,D,E,F,G,H.....
    有的列可能是空值,对这些列,我不想Insert 到Y表中,是否执行完你的方法后,再来一个DELETE,还是有更好的办法,一次完成.
      

  5.   

    今天刚看到一个新的语法,呵呵:Insert all 
     when not A is null and not B is null then
      into Y(A,B) values (A,B)
     when not C is null and not D is null then
      into Y(A,B) values (C,D)
     when not E is null and not F is null then
      into Y(A,B) values (E,F)
     when not G is null and not H is null then
      into Y(A,B) values (G,H)
      ........
    select KEY,A,B,C,D,E,F,G,H  ........
      from x
    where KEY='K1';
      

  6.   

    楼上的新语法没大看懂,仅仅判断了A、B不为null,要是c或d为null呢?
      

  7.   

    hevin(没有什么是不可能的) 兄弟很厉害,这些语法偶第一次看到,谢谢你让我长见识
      

  8.   

    [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 student2、不定列行列转换

    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;即可