sql INOT IN踩的坑

标题当子查询中存在 NULL 值时,使用 NOT IN 查询时会出现问题。因为 NULL 值既不等于也不不等于任何值,所以无法确定它是否属于 NOT IN 子句中的结果集。因此,如果子查询的结果集中包含 NULL 值,NOT IN 查询将返回空结果。

create table test1 (id1 int)
create table test2 (id2 int)

insert into test1 (id1) values (1),(2),(3)
insert into test2 (id2) values (1),(2)

使用此语句能查出3
select * from test1 where id1 not in (select id2 from test2);

当往test2表插入一条null数据的时候
insert into test2 (id2) values (NULL);

在执行上面语句返回的是NULL而不是3
select * from test1 where id1 not in (select id2 from test2);

如果要返回3请使用下面语句
SELECT * FROM test1
WHERE NOT EXISTS (SELECT * FROM test2 WHERE test1.id1 = test2.id2);

你可能感兴趣的:(sql,数据库)