我是Oracle10g用户。我不得不编写一些SQL查询,并发现了一个神秘的行为(如我所见)。假设我们有一个表,该表能够以某种简单的两级树结构进行连接。下一个查询给我“歧义错误”,这是预期的:
select title from table1 left join table1 on condition
但是,如果我要在联接中再添加一个表,歧义问题将简单地消失:
select title from table1 join table2 on other_condition left join table1 on condition
请问对此有何解释?我完全想念它…完整的测试用例可以在http://pastebin.com/webf513w中找到
对于第三个查询,Oracle 10g从第二个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)