from 和 to 的内容从一个相同的master表取得,因此行数和列数都不是确定的。
例如master表中有4条记录,则表2 有4条记录,列数为5(包括from)还有,表2不是表阿,而是查询结果集。

解决方案 »

  1.   

    select "from",
        sum(decode("from",1,value,0)) to1,
        sum(decode("from",2,value,0)) to2,
        sum(decode("from",3,value,0)) to3
    from 表A
    group by "from"
    如果表2的列数是不确定的那只有用存储过程或函数了。
      

  2.   

    如果master中有4条记录
    1
    2
    3
    4
    想得到结果
    from    to1  to2   to3
    1       10    20    30
    2       40    50    60 
    3       70    80    90
    4      null  null  null怎么处理?
      

  3.   

    哦,应该是:
    from    to1  to2   to3   to4
    1       10    20    30   null
    2       40    50    60   null
    3       70    80    90   null
    4      null  null  null  null
      

  4.   

    from    to    value
    1       1        10 
    1       2        20 
    1       3        30
    2       1        40 
    2       2        50 
    2       3        60 
    3       1        70 
    3       2        80 
    3       3        90  
    这张表和master有什么关系?master表中的记录最多有几条,如果不定的话,不要用SQL语句了,用存储过程
      

  5.   

    例如:from和to中保存城市编号,value表示城市间距离
    而所有城市编号由master维护。
      

  6.   

    我想知道oracle中怎样实现类似sql server中的left join
      

  7.   

    select a.cityno,b.to1,b.to2,b.to3,b.to4 from master a,
    (
      select "from",
        sum(decode("from",1,value,0)) to1,
        sum(decode("from",2,value,0)) to2,
        sum(decode("from",3,value,0)) to3,
        sum(decode("from",4,value,0)) to4
      from 表A
      group by "from"
    ) b
    where a.cityno=b."from"(+);    --这是master和b结果集关于城市编号的左外连接
      

  8.   

    ORARichard(没钱的日子......) 说的很好,更具体的,看看:
    [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;即可