postgres=# select * from q10c_debug_sql;----------+------------+-----------------现在,我发出以下两个查询postgres=# select count(*) from (select * from imdb_int.movie_companiesexcept select * from q10c_debug_sql)
我试图在Postgres上运行一些更新查询,其中表是在公共字段上连接的。这是与Server一起运行的,更新计数为1,而postgres的更新计数为3。当目标表与连接中涉及的源表同名时,postgres似乎不会执行隐式连接。test2;
select count(*) from test t2, test2 t3
/