MySql笔记——关于NULL及NULL列索引的疑问
是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:
mysql需要安装documentation在SQL中,与任何其他值相⽐,NULL值永远不会为真,即使是NULL。包含NULL的表达式始终⽣成NULL值,除⾮⽂档中对表达式中涉及的运算符和函数另有说明。以下⽰例中的所有列都返回NULL:
null⽐较
You can add an index on a column that can have NULL values if you are using the MyISAM, InnoDB, or MEMORY storage engine. Otherwise, you must declare an indexed column NOT NULL, and you cannot insert NULL into the column.
如果使⽤MyISAM,InnoDB或MEMORY存储引擎,则可以在可以具有“NULL”值的列上添加索引。否则,您必须声明索引列“NOT NULL”,并且不能在列中插⼊“NULL”。
可以很明显的看出来,⽂档上⾯的意思和我们实际⼝⼝相传的 MySql中null列不能添加索引 的“公理”是
相悖的。
下⾯是笔者⾃⼰做的⼀些测试(使⽤的数据库版本5.6.16,引擎类型是InnoDB,索引类型是BTREE)
1. 索引类 is null ⾛了索引
is null查询
2. 索引类 is not null ⾛了全表
is not null查询
3. 索引类查询 ⾛了索引
索引列等于某个值
附上表结构和索引
表结构
表索引
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 for NULL in SQL statements is deprecated as of MySQL 5.7.18 and is removed in MySQL 8.0; use NULL instead.
Be aware that the NULL value is different from values such as 0 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 with LOAD DATA or SELECT ... 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 is \N
有⼈说NULL底层是随机值在表⽰,但是如果NULL是随机值的话,那MySql是⽤了怎样的规则可以在查询时把这个“随机值”转回成NULL?⼜是怎么判断那个“随机值”是NULL 还是⽤户存进去的值的呢?在什
么情况下null 列能使⽤到索引,什么情况下⼜导致索引失效的呢?这⼀点暂时没有在⽹上到相关答案,也许只有从源码中能够解答这个问题了。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论