oracle 中 in 和exists用法区别

select*fromscwherecno='c001'andsnoin(selectsnofromscwherecno='c002');select*fromscwhe... select * from sc where cno='c001' and sno in(select sno from sc where cno='c002');
select * from sc where cno='c001' and exists(select sno from sc where cno='c002');
请问这两句运行结果为什么不一样?
展开
 我来答
badkano
推荐于2018-03-19 · 知道合伙人体育行家
badkano
知道合伙人体育行家
采纳数:144776 获赞数:885374
团长

向TA提问 私信TA
展开全部
是这样的
in 是返回的结果集

比如你只运行这一句
select sno from sc where cno='c002'
返回的是一列sno

但是exists则不同,返回的是布尔值

虽然里边那个没法单独运行
select * from sc a where cno='c001' and exists(select sno from sc b where cno='c002' and a.sno=b.sno) ;
后边必须要写上两者的关联
雪伴我行
2013-09-12
知道答主
回答量:25
采纳率:100%
帮助的人:13.8万
展开全部
select * from sc where cno='c001' and sno in(select sno from sc where cno='c002');
SC中要同时存在CNO = COO1 和COO2的行。且这两个行的SNO要一样。从中提取COO1的行。

select * from sc where cno='c001' and exists(select sno from sc where cno='c002');
SC中要同时存在CNO = COO1 和COO2的行。            从中提取COO1的行。

excists只是决断有没有值,有则TRUE,没有则FALSE。所以exists中的查询那个栏位都一样。
即下边的查询,放在EXISTS中是等价的。
select sno from sc where cno='c002' 
select coo2 from sc where cno='c002'
select 1from sc where cno='c002'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
EvilLike
2013-09-11 · TA获得超过190个赞
知道答主
回答量:70
采纳率:90%
帮助的人:33万
展开全部
exists验证存在性。
select * from sc where cno='c001' and exists(select sno from sc where cno='c002');

改成

select * from sc a where cno='c001' and exists(select sno from sc b where cno='c002' and a.sno=b.sno);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式