是MySql版本?表结构?索引类型?引擎类型?表数据大小?
为什么大家都说 MySql中如果某一列中含有null,那么包含该列的索引就无效了
。
MySql中含有nul的列,真的不能走索引了吗?
例如在CSDN上看到的一篇博客 对存在空值的列建索引 作者的查询测试确实是没有走索引的。
简书上有人对此说法提出了质疑 MySQL中NULL对索引的影响
知乎上面找到的一篇文章 MySQL中NULL值有什么意义?解释了为什么IS NULL也是能走索引的。
3.B-Tree如果是主索引,主键有NOT NULL约束。如果是辅助索引,并且没有NOT NULL约束的列,只是多了对NULL的判断,并没有太大的不同。IS NULL也是能走索引的。
在MySQL 5.7 官方文档上面的说明:
In SQL, the NULL value is never true in comparison to any other value, even NULL. An expression that contains NULL always produces a NULL value unless otherwise indicated in the documentation for the operators and functions involved in the expression. All columns in the following example return NULL:
在SQL中,与任何其他值相比,NULL值永远不会为真,即使是NULL。包含NULL的表达式始终生成NULL值,除非文档中对表达式中涉及的运算符和函数另有说明。以下示例中的所有列都返回NULL:
You can add an index on a column that can have
NULL
values if you are using theMyISAM
,InnoDB
, orMEMORY
storage engine. Otherwise, you must declare an indexed columnNOT NULL
, and you cannot insertNULL
into the column.
如果使用MyISAM
,InnoDB
或MEMORY
存储引擎,则可以在可以具有“NULL”值的列上添加索引。否则,您必须声明索引列“NOT NULL”,并且不能在列中插入“NULL”。
可以很明显的看出来,文档上面的意思和我们实际口口相传的 MySql中null列不能添加索引 的“公理”是相悖的。
下面是笔者自己做的一些测试(使用的数据库版本5.6.16,引擎类型是InnoDB,索引类型是BTREE)
-
索引类 is null 走了索引
-
索引类 is not null 走了全表
-
索引类查询 走了索引
附上表结构和索引
MySQL 5.7 官方文档 9.1.7 NULL Values上面的解释:
The
NULL
value means “no data.”NULL
can be written in any lettercase. A synonym is\N
(case-sensitive). Treatment of\N
as a synonym forNULL
in SQL statements is deprecated as of MySQL 5.7.18 and is removed in MySQL 8.0; useNULL
instead.
Be aware that theNULL
value is different from values such as0
for numeric types or the empty string for string types. For more information, see Section B.4.4.3, “Problems with NULL Values”.
For text file import or export operations performed withLOAD DATA
orSELECT ... INTO OUTFILE
,NULL
is represented by the\N
sequence. See Section 13.2.6, “LOAD DATA Syntax”. Use of\N
in text files is unaffected by the deprecation of\N
in SQL statements.
疑问:MySql 底层用什么表示NULL?
NULL真的是NULL?显然不是,NULL值只是表示“无数据”。NULL可以写在任何字母大小写中。同义词是\ N(区分大小写),从MySQL 5.7.18开始,不推荐使用\ N作为SQL语句中NULL的同义词,并在MySQL 8.0中删除;请改用NULL。
有人说NULL底层是随机值在表示,但是如果NULL是随机值的话,那MySql是用了怎样的规则可以在查询时把这个“随机值”转回成NULL?又是怎么判断那个“随机值”是NULL 还是用户存进去的值的呢?在什么情况下null 列能使用到索引,什么情况下又导致索引失效的呢?这一点暂时没有在网上找到相关答案,也许只有从源码中能够解答这个问题了。