欢迎来到代码驿站!

Mysql

当前位置:首页 > 数据库 > Mysql

解决mysql使用not in 包含null值的问题

时间:2021-03-05 12:40:48|栏目:Mysql|点击:

注意!!!

select * from user where uid not in (a,b,c,null);

这个sql不回返回任何结果。要避免not in的list中出现null的情况。

另外:

?C如果null参与算术运算,则该算术表达式的值为null。(例如:+,-,*,/ 加减乘除)

?C如果null参与比较运算,则结果可视为false。(例如:>=,<=,<> 大于,小于,不等于)

?C如果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)

上一篇:详解MySQL拼接函数CONCAT的使用心得

栏    目:Mysql

下一篇:mysql中格式化数字详解

本文标题:解决mysql使用not in 包含null值的问题

本文地址:http://www.codeinn.net/misctech/74515.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有