具有语法错误的PostgreSQL子查询提供了有效的结果

时间:2013-10-16 15:07:42

标签: sql postgresql subquery syntax-error

这里发生了什么?

我有两个表,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)

这有什么逻辑吗?或者我应该提交错误报告吗?

1 个答案:

答案 0 :(得分:4)

外部select中的列在子选择中可见。

您的查询相当于:

select * 
from test1 
where test1.id1 in (select test1.id1 from test2);