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');
请问这两句运行结果为什么不一样? 展开
select * from sc where cno='c001' and exists(select sno from sc where cno='c002');
请问这两句运行结果为什么不一样? 展开
3个回答
展开全部
是这样的
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) ;
后边必须要写上两者的关联
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) ;
后边必须要写上两者的关联
展开全部
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'
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'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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);
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);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询