这里发生了什么?
我有两个表,test1和test2:
create table test1 (id1 int4 primary key);
create table test2 (id2 int4 primary key);
正如预期的那样,这个查询:
select id1 from test2;
产生语法错误:
ERROR: column "id1" does not exist
LINE 1: select id1 from test2;
但是,当我尝试执行此查询时:
select * from test1 where id1 in (select id1 from test2);
PostgreSQL没有抱怨,执行查询并给我:
id1
-----
(0 rows)
这有什么逻辑吗?或者我应该提交错误报告吗?
答案 0 :(得分:4)
外部select
中的列在子选择中可见。
您的查询相当于:
select *
from test1
where test1.id1 in (select test1.id1 from test2);