【sql】not in和left join,left join替换not in,数据库优化

(1)not in 理解

select * from student where classID in (1,2,3)
找出班级ID为1,2, 3的学生
not in (1,2,3) 就是不在这个范围内的。

(2)巧用left join代替not in

select * from a
where a.id not in (
     select id from b
)

找出不和b表id相等的数据。

A表id 为1,2,3

B表id为2,3,4

查询结果为1

将b表id和a表id挨个比对,我们假如a表有 10万条记录, 而b表里面也有10万条记录, 那么需要的判断是 10万 乘以 10万 ,则是100亿次判断.所以执行效率极其低下. 即使发现存在就返回.那么也有 100亿/2=50亿次判断.

等价于

select a.* from a
left join b
     on a.id=b.id
where b.id is null

首先

select * from a
left join b
     on a.id=b.id

查询结果为1,2,3

【sql】not in和left join,left join替换not in,数据库优化_第1张图片

利用where b.id is null,只剩下id=1的数据。

数据最多的情况是a,b表的id没有相等的,10w+10w=20w次查询即可。

你可能感兴趣的:(sql)