Oracle-判断一个表的一列是否在另一张表的一列存在

select *
from A
where exists(select 1 from B where A.a = B.b)
原文地址:https://www.cnblogs.com/Formulate0303/p/13503643.html