标签:select sts lse col str ini sele sel rom
使用 EXISTS 方式
select * from A a where EXISTS(select b.mainInfoId from B b where b.mainInfoId=a.mainInfoId);
使用 in 方式
select * from A where id in (select id from B);
标签:select sts lse col str ini sele sel rom
原文地址:https://www.cnblogs.com/ming-blogs/p/11432423.html