模拟数据(dict) idnumname1100xiaoming2200xiaohong3(Null)xiaobing 1、查询包括 null 使用 in 的时候,自动忽略 null 的数据 sele
id | num | name |
---|---|---|
1 | 100 | xiaoming |
2 | 200 | xiaohong |
3 | (Null) | xiaobing |
select * from dict where num in (100, 200, null)
理想是查询到全部数据,但只能查询出来 id = 1 和 id = 2 的数据
select * from dict where num not in (100, null)
理想是查询到 id = 2 的数据,但实际查询为空,没有数据
注:使用 not in 的时候,如果 not in 后面的选项中有 null,不会查询出来任何数据。sql 语句本身直接返回 false ,所以使用 not in 的时候,要保证 in 中的条件不会出现 null 的情况,不然可能会出现意想不到的情况
select * from dict where num in (100, 200)
正常查询到 id = 1 和 id = 2 的数据
select * from dict where num not in (100, 200)
理想是查询到 id = 3 的数据,但实际查询为空,没有数据
可参考:sql语句中使用in、not in 查询时,注意条件范围中的null值处理事项
来源地址:https://blog.csdn.net/weixin_50223520/article/details/130243990
--结束END--
本文标题: 【MySQL】使用 IN 或 NOT IN,数据中有 NULL 出现的查询异常情况
本文链接: https://lsjlt.com/news/441563.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0