码迷,mamicode.com
首页 > 数据库 > 详细

sqlserver exists 与 in 的区别

时间:2019-08-29 23:59:57      阅读:264      评论:0      收藏:0      [点我收藏+]

标签: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);

sqlserver exists 与 in 的区别

标签:select   sts   lse   col   str   ini   sele   sel   rom   

原文地址:https://www.cnblogs.com/ming-blogs/p/11432423.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!