sqlserver exists 与 in 的区别
Posted ming-blogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlserver exists 与 in 的区别相关的知识,希望对你有一定的参考价值。
使用 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);
以上是关于sqlserver exists 与 in 的区别的主要内容,如果未能解决你的问题,请参考以下文章
使用EXISTS关键字引入的子查询与IN关键字引入的子查询在语法上都有哪些不同?
in与exists和not in 与 not exists的区别
sql中的in与not in,exists与not exists的区别
sql中的in与not in,exists与not exists的区别