我们可以在MySQL 5.7中的包含NULL值的列上创建索引吗?

时间:2017-12-10 03:27:30

标签: mysql indexing null primary-key mysql-5.7

以下是MySQL文档中的文本:

  

表的主键表示列或列集   您在最重要的查询中使用的。它有一个相关的索引,   用于快速查询性能。 从NOT查询性能优势   NULL优化,因为它不能包含任何NULL值

我不是从上面的文字中以粗体字理解句子的确切含义。有人请向我解释。

另外,请告诉我们是否可以在 MySQL 5.7 中的包含NULL值的列上创建索引?如果不是,那是什么原因?

谢谢。

1 个答案:

答案 0 :(得分:0)

PRIMARY 键用于组织磁盘上的数据,因为与数据的物理排列方式有关系,所以不能让主键的任何部分为NULL。

非主索引CAN有一个或多个允许NULL的列。 demo

CREATE TABLE `my_docs` (
  `id` int(6) unsigned NOT NULL AUTO_INCREMENT,
  `rev` int(3) ,
  `content` varchar(200) NOT NULL,
  PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8;


INSERT INTO `my_docs` (`rev`, `content`) VALUES
  (1, 'The earth is flat'),
  (1, 'One hundred angels can dance on the head of a pin'),
  (NULL, 'The earth is flat and rests on a bull\'s horn'),
  (3, 'The earth is like a ball.');

alter table `my_docs` add key my_added_index (`rev`);

SELECT id, rev, content
FROM `my_docs`
where rev = 3

| id | rev |                   content |
|----|-----|---------------------------|
|  4 |   3 | The earth is like a ball. |


+---+-------------+-----------+------+----------------+----------------+---------+-------+------+----------+-------+
| d | select_type |   table   | type | possible_keys  |      key       | key_len |  ref  | rows | filtered | Extra |
+---+-------------+-----------+------+----------------+----------------+---------+-------+------+----------+-------+
| 1 |    SIMPLE   |   my_docs | ref  | my_added_index | my_added_index |       5 | const |    1 |   100.00 |       |
+---+-------------+-----------+------+----------------+----------------+---------+-------+------+----------+-------+