【SQL】使用 in 或 not in,注意“子查询”或“in范围”数据中有 NULL 出现的查询异常情况

【注意,以下情况在MySQL和SQL Sever中情况相同】

转载自: https://blog.csdn.net/weixin_50223520/article/details/130243990

 

模拟数据(dict)

id num name
1 100 xiaoming
2 200 xiaohong
3 (Null) xiaobing

1、查询包括 null

使用 in 的时候,自动忽略 null 的数据  (子查询的情况也一样)

select * from dict where num in (100, 200, null)

理想是查询到全部数据,但只能查询出来 id = 1 和 id = 2 的数据

使用 not in 的时候,不会查询出来任何数据  (子查询的情况也一样)

select * from dict where num not in (100, null)

理想是查询到 id = 2 的数据,但实际查询为空,没有数据

注:使用 not in 的时候,如果 not in 后面的选项中有 null,不会查询出来任何数据。sql 语句本身直接返回 false ,所以使用 not in 的时候,要保证 in 中的条件不会出现 null 的情况,不然可能会出现意想不到的情况

2、查询不包括 null

使用 in 的时候,正常查询

select * from dict where num in (100, 200)

正常查询到 id = 1 和 id = 2 的数据

使用 not in 的时候,会过滤掉null的数据

select * from dict where num not in (100, 200)

理想是查询到 id = 3 的数据,但实际查询为空,没有数据

可参考:sql语句中使用in、not in 查询时,注意条件范围中的null值处理事项

你可能感兴趣的:(数据库,in,null,not,in,null,null,子查询)