sql语句 如何判断A表中的a列数据是否在B表中的b列中存在

--存在
select *
from A
where exists(select 1 from B where A.a = B.b)
--不存在
select *
from A
where not exists(select 1 from B where A.a = B.b)

 

 

转载于:https://www.cnblogs.com/lydg/p/11362343.html

    原文作者:dinge8714
    原文地址: https://blog.csdn.net/dinge8714/article/details/101753078
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞