sql >> データベース >  >> RDS >> Oracle

Oracle SQLが、ある結合ではあいまいさを不思議に解決し、他の結合では解決しないのはなぜですか。

    3番目のクエリでは、Oracle 10gは2番目のTestTable1(エイリアスTestTable1_2)からfield3を返します。これはバグのようで、11gで修正されたようです。

    テストケース:

    INSERT INTO TestTable1 VALUES (1,2,3,NULL);
    INSERT INTO TestTable1 VALUES (2,5,6,1);
    INSERT INTO TestTable2 VALUES (5,6,7);
    INSERT INTO TestTable2 VALUES (2,20,30);
    
    SELECT field3
    FROM TestTable1
    join TestTable2 ON TestTable1.field1 = TestTable2.field1
    left join TestTable1 TestTable1_2 ON TestTable1.self_ref = TestTable1_2.id;
    
    FIELD3
    ======
    3
    (null)
    
    SELECT TestTable1.field3, TestTable2.field3, TestTable1_2.field3
    FROM TestTable1
    join TestTable2 ON TestTable1.field1 = TestTable2.field1
    left join TestTable1 TestTable1_2 ON TestTable1.self_ref = TestTable1_2.id;
    
    FIELD3 FIELD3_1 FIELD3_2
    ====== ======== ========
    6      7        3
    3      30       (null)
    



    1. CentOS7にMariaDB10をインストールして保護する方法

    2. SQLServer2008の行の挿入と更新のタイムスタンプ

    3. Condaを使用してMySQLdbをインストールするにはどうすればよいですか?

    4. MySQLiプリペアドステートメントエラーレポート