Skip to content

Commit

Permalink
Merge branch 'master' of github.com:LanSeTianYe/Notes
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfeilong committed Aug 7, 2024
2 parents ea33df0 + d28e5c1 commit 3066938
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 数据存储/MySQL/MySQL EXPLAIN.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
* NULL:在性能优化阶段分解查询语句,在查询阶段甚至不用再访问表或索引。
SELECT min(age) FROM person_copy

* possible_keys: 可以使用哪些索引来提升查询性能。
* key: 实际使用的key,最小化查询成本的Key(覆盖索引)
* key_len: 使用索引的字节数。
Expand All @@ -53,4 +54,4 @@
* `Using where` 存储引擎检索后再进行数据过滤。
* `Using temporary` 对查询结果排序的时候使用临时表。
* `Using filesort` 使用外部文件排序
* `Range checked for each record(index map:N)` 没有好用的索引。
* `Range checked for each record(index map:N)` 没有好用的索引。

0 comments on commit 3066938

Please sign in to comment.