【用exists】:
select * from employees e
where not exists
(select emp_no from dept_emp d where d.emp_no = e.emp_no);
【不用exists】:
select * from employees e
left join dept_emp d on d.emp_no = e.emp_no
where d.emp_no is null;
【exists与in的区别】:
EXISTS语句:执行employees.length次
指定一个子查询,检测行的存在。遍历循环外表,然后看外表中的记录有没有和内表的数据一样的。匹配上就将结果放入结果集中。
select *
from employees
where emp_no not in
(
select emp_no
from dept_emp
)
IN 语句:只执行一次 感觉看起来更通俗易懂
确定给定的值是否与子查询或列表中的值相匹配。in在查询的时候,首先查询子查询的表,然后将内表和外表做一个笛卡尔积,然后按照条件进行筛选。所以相对内表比较小的时候,in的速度较快。
两者详细资料(Sql 语句中 IN 和 EXISTS 的区别及应用):https://blog.csdn.net/wqc19920906/article/details/79800374
in 和 exists的区别: 如果子查询得出的结果集记录较少,主查询中的表较大且又有索引时应该用in, 反之如果外层的主查询记录较少,子查询中的表大,又有索引时使用exists。