We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3ef9627 + 5720352 commit 4850fbaCopy full SHA for 4850fba
docs/database/MySQL Index.md
@@ -70,7 +70,7 @@ select * from user where city=xx ; // 无法命中索引
70
71
冗余索引指的是索引的功能相同,能够命中 就肯定能命中 ,那么 就是冗余索引如(name,city )和(name )这两个索引就是冗余索引,能够命中后者的查询肯定是能够命中前者的 在大多数情况下,都应该尽量扩展已有的索引而不是创建新索引。
72
73
-MySQLS.7 版本后,可以通过查询 sys 库的 `schema_redundant_indexes` 表来查看冗余索引
+MySQL 5.7 版本后,可以通过查询 sys 库的 `schema_redundant_indexes` 表来查看冗余索引
74
75
### Mysql如何为表字段添加索引???
76
0 commit comments