我不明白这种情况下的行为.根据我的理解,使用无效子查询的查询应该会导致错误.但在此示例中,它返回一些行.
测试数据:
create table test_values ( tst_id number,tst_id2 number,tst_value varchar2( 10 ) ); create table test_lookup ( tst_id number,tst_value varchar2( 10 ) ); insert into test_values( tst_id,tst_id2,tst_value ) values ( 1,2,'a' ); insert into test_values( tst_id,'b' ); insert into test_values( tst_id,tst_value ) values ( 2,'c' ); insert into test_values( tst_id,'d' ); insert into test_lookup( tst_id,'findMe' ); commit;
按预期工作:
select * from test_values where tst_id in ( select tst_id from test_lookup where tst_value = 'findMe' ); /* TST_ID TST_ID2 TST_VALUE ---------- ---------- ---------- 1 2 b 1 2 a */ select tst_id2 from test_lookup where tst_value = 'findMe'; --ORA-00904: "TST_ID2": invalid identifier
但是下面的查询也是检索行,显然是从“test_values”-table中获取“test_id2” – 列,而不是从子查询中所述的“test_lookup”-table中获取,尽管不使用内部和外部的别名部分.
select * from test_values where tst_id in ( select tst_id2 from test_lookup where tst_value = 'findMe' ); /* TST_ID TST_ID2 TST_VALUE ---------- ---------- ---------- 2 2 c 2 2 d */