注意!!!
select * from user where uid not in (a,b,c,null);
这个sql不回返回任何结果。要避免not in的list中出现null的情况。
另外:
–如果null参与算术运算,则该算术表达式的值为null。(例如:+,-,*,/ 加减乘除)
–如果null参与比较运算,则结果可视为false。(例如:>=,<=,<> 大于,小于,不等于)
–如果null参与聚集运算,则聚集函数都置为null(使用isnull(字段,0)等方式可以避免这种情况)。除count(*), count(1), count(0)等之外(count(字段) 字段为null的行不参与计数)。
--如果在not in子查询中有null值的时候,则不会返回数据。
补充:MySQL in,not in,exists,not exists与null的恩恩怨怨
null这个东西在数据里算是个奇葩,在比较中也比较特殊,下面记录总结一下在in,not in,exists,not exists中null对判断结果的影响。
做一些描述声明,在比较符左边的我们称为左比较符,在比较符右边的我们称为右比较符,例如1 in (1,2),那么in左边的1是左比较符,in右边的(1,2)是右比较符。
1.in
1.1当左比较符是null,任何情况下都返回null。
mysql> select null in (1,2); +---------------+ | null in (1,2) | +---------------+ | NULL | +---------------+ 1 row in set (0.00 sec) mysql> select null in (1,2,null); +--------------------+ | null in (1,2,null) | +--------------------+ | NULL | +--------------------+ 1 row in set (0.00 sec)
1.2当右比较符包含null,只当左比较符不为null,且右比较符包含左比较符时,返回1,其他情况均返回null。
mysql> select null in (1,2,null); +--------------------+ | null in (1,2,null) | +--------------------+ | NULL | +--------------------+ 1 row in set (0.00 sec) mysql> select 3 in (1,2,null); +-----------------+ | 3 in (1,2,null) | +-----------------+ | NULL | +-----------------+ 1 row in set (0.00 sec) mysql> select 1 in (1,2,null); +-----------------+ | 1 in (1,2,null) | +-----------------+ | 1 | +-----------------+ 1 row in set (0.00 sec)
2.not in
2.1当左比较符为null,任何情况都返回null。
mysql> select null not in (1,2,null); +------------------------+ | null not in (1,2,null) | +------------------------+ | NULL | +------------------------+ 1 row in set (0.00 sec) mysql> select null not in (1,2); +-------------------+ | null not in (1,2) | +-------------------+ | NULL | +-------------------+ 1 row in set (0.00 sec)
2.2当右比较符包含null,当右比较符包含左比较符时返回0,其他情况均返回null。
mysql> select 1 not in (1,2,null); +---------------------+ | 1 not in (1,2,null) | +---------------------+ | 0 | +---------------------+ 1 row in set (0.00 sec) mysql> select 1 not in (2,3,null); +---------------------+ | 1 not in (2,3,null) | +---------------------+ | NULL | +---------------------+ 1 row in set (0.00 sec)
3.exists
exists子查询返回null时判断为真。
mysql> select exists (select null); +----------------------+ | exists (select null) | +----------------------+ | 1 | +----------------------+ 1 row in set (0.00 sec)
4.not exists
not exists子查询返回null时判断为假。
mysql> select not exists (select null); +--------------------------+ | not exists (select null) | +--------------------------+ | 0 | +--------------------------+ 1 row in set (0.00 sec)
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“解决mysql使用not in 包含null值的问题”评论...
更新日志
2024年11月06日
2024年11月06日
- 雨林唱片《赏》新曲+精选集SACD版[ISO][2.3G]
- 罗大佑与OK男女合唱团.1995-再会吧!素兰【音乐工厂】【WAV+CUE】
- 草蜢.1993-宝贝对不起(国)【宝丽金】【WAV+CUE】
- 杨培安.2009-抒·情(EP)【擎天娱乐】【WAV+CUE】
- 周慧敏《EndlessDream》[WAV+CUE]
- 彭芳《纯色角3》2007[WAV+CUE]
- 江志丰2008-今生为你[豪记][WAV+CUE]
- 罗大佑1994《恋曲2000》音乐工厂[WAV+CUE][1G]
- 群星《一首歌一个故事》赵英俊某些作品重唱企划[FLAC分轨][1G]
- 群星《网易云英文歌曲播放量TOP100》[MP3][1G]
- 方大同.2024-梦想家TheDreamer【赋音乐】【FLAC分轨】
- 李慧珍.2007-爱死了【华谊兄弟】【WAV+CUE】
- 王大文.2019-国际太空站【环球】【FLAC分轨】
- 群星《2022超好听的十倍音质网络歌曲(163)》U盘音乐[WAV分轨][1.1G]
- 童丽《啼笑姻缘》头版限量编号24K金碟[低速原抓WAV+CUE][1.1G]