一个查询效率问题!
select s#,snamefrom s
where s# in (select s#
from sc
where c#='c2');
select s#,sname
from s
where exists(select *
from sc
where sc.s#=s.s# and c#='c2');
各位帮忙比较一下这两种查询的区别?
那个效率更高?为什么?
感谢大家的支持!我觉得用第一种是先对sc表做了一次筛选!所以效率更高一些!
第二种方法的原理就不太清楚了!有那位能帮忙写一下它的关系演算表达式啊?