鉴于这些表格:
create temporary table a(pid integer, cid integer);
create temporary table b(id integer, code varchar);
这有效,但返回错误的结果:
select pid
from a
where cid in (select cid from b where code like 'AE%')
我刚刚有一个这样的查询,我使用了错误的字段,令我惊讶的是,该查询甚至可以工作。这样的查询不只是返回表a中的所有行吗?
您有任何这样编写的查询示例有用吗?
也许我错过了一些东西。