From a0e23e0c90bba2a3b5835ea236957edca73e8090 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=B3=E9=98=B3?= <260893248@qq.com> Date: Mon, 18 Mar 2019 19:27:13 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B2=8C=E4=BC=BC=E5=8D=95=E8=AF=8D=E6=9C=89?= =?UTF-8?q?=E7=82=B9=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 貌似单词有点错误 --- 数据存储/MySQL Index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/数据存储/MySQL Index.md b/数据存储/MySQL Index.md index 27b82c8b..e8d968f2 100644 --- a/数据存储/MySQL Index.md +++ b/数据存储/MySQL Index.md @@ -70,7 +70,7 @@ select * from user where city=xx; // 无法命中索引 冗余索引指的是索引的功能相同,能够命中 就肯定能命中 ,那么 就是冗余索引如(name,city )和(name )这两个索引就是冗余索引,能够命中后者的查询肯定是能够命中前者的 在大多数情况下,都应该尽量扩展已有的索引而不是创建新索引。 -MySQLS.7 版本后,可以通过查询 sys 库的 `schemal_r dundant_indexes` 表来查看冗余索引 +MySQLS.7 版本后,可以通过查询 sys 库的 `schema_redundant_indexes` 表来查看冗余索引 ### Mysql如何为表字段添加索引???