模拟数据(dict)
idnumname1100xiaoming2200xiaohong3(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 notin(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 notin(100,200)
理想是查询到 id = 3 的数据,但实际查询为空,没有数据
参考
sql 语句中使用 in、not in 查询时,注意条件范围中的 null 值处理事项
版权归原作者 Joseph 乔 所有, 如有侵权,请联系我们删除。