比如下面的两条语句,使用in关键字和exists关键字实现同样的功能,他们有什么区别?哪个更好一些?selectcount(id)fromt1wheref1in(selectf2fromt2);selectcount(id)fromt1whereexists(select*fromt2wheref2=t1.f1);
2 回答
函数式编程
TA贡献1807条经验 获得超9个赞
这里说Oracle中这两个的区别是:in:inner表驱动outter表.exists:outter表驱动inner表.inner表查询得到的结果集小的时候使用in,否则使用exists.小结果集驱动大结果集时查询效率更高.不知道楼下怎么看?
添加回答
举报
0/150
提交
取消