EXPLAIN是查看MySQL优化器如何决定执行查询的主要方法,这个功能具有局限性,以为它并总是会说出真相,但是却可以获得最好信息.
学会解释EXPLAIN,你就会了解MySQL优化器是如何工作,你才能去优化MySQL.
如何调用?
只需要在SELECT前面加上EXPLAIN即可.
在语句结尾(;之前)加上\G能够更清晰的查看.
需要说的是EXPLAIN只对SELECT查询作解释,INSERT,UPDATE,DELETE不会哦.
EXPLAIN中的列
id列一个标识SELECT所属行编号,如果在语句中没有子查询或联合,说明只有一个SELECT,于是这个列显示为1,否则内层的SELECT会顺序编号.
MySQL将SELECT查询分为简单和复杂类型,复杂类型可分为:简单子查询,所谓的派生表(在FROM子句中的子查询),UNION查询.
简单子查询:EXPLAIN SELECT (SELECT `uid` FROM `tips` limit 1) FROM `test_key` WHERE 1
所谓的派生表(在FROM子句中的子查询)EXPLAIN SELECT uid FROM (SELECT uid FROM user) as der.
select_type列:显示了对应还是简单还是复杂SELECT(如果是后者,则将会是三种复杂类型中的一种).
SIMPLE意味着查询中不包含子查询和UNION.如果查询中包含子查询或UNION,那么最外层的SELECT被标记为PRIMARY(也就是id列为1的)
其他标记:
SUBQUERY,包含在SELECT列表中的子查询(不在FROM子句中)被标记为此;
DERIVED,在FROM子句中的子查询被标记为此;
UNION,在UNION中的第二个和随后的SELECT被标记为此;如EXPLAIN SELECT 1 UNION ALL SELECT 1
UNION RESULT,用来从UNION的临时表检索结果的SELECT标记为UNION RESULT,如EXPLAIN SELECT 1 UNION ALL SELECT 1
table列:显示对应行正在访问哪个表
当FROM子句中有子查询或UNION时,table列是
type列:就是MySQL决定如何查找表中行(一下从最差到最优排列)
ALL,全表扫描
index,跟全表扫描一样,知识MySQL在扫描表时按索引次序进行而不是行range,范围扫描,一个有限制的索引扫描,它开始于索引里的某一点,返回匹配这个值域的行(显而易见的范围扫描.即带有BETWEEN或在WHERE子句中带有>的查询,当MySQL使用索引去查找一系列值的时候,如IN()和OR列表,也为显示的范围扫描)
ref,一种索引访问也叫索引查找,他返回所有匹配某单个值的行,它可能会找到多个符合条件行(EXPLAIN SELECT tipname FROM `tips` WHERE uid=10984)
eq_ref,一种索引查找,他最多只返回一条符合条件的行.这种会在使用主键或者唯一性索引时看到.(EXPLAIN SELECT * FROM `tips` WHERE uid=12)
const和system,当MySQL能对查询的某部分进行优化并将其转换成一个常量时(EXPLAIN SELECT * FROM `tips` WHERE id=5)
NULL,这种访问方式意味着MySQL能在优化阶段分解查询语句,在执行阶段用不着在访问表或者索引(EXPLAIN SELECT max(id),min(id)FROM `tips`)
possible_keys列:这一列显示了查询可以使用哪些索引,是基于查询访问的列和使用的比较操作符来判断的.
key列:这一列显示了MySQL决定采用哪个索引来优化对该表的访问
key_len列:显示MySQL在索引里使用的字节数.举个例子就是在查询中使用到了主键,而主键的数据类型为INT,则为4,SMALLINT则为2
ref列:显示了之前的表在key列记录的索引中查询值所用到的列或常量.
row列:显示的是MySQL为了找到所需的值而要读取的行数.
Extra列:在此显示的是在其他列不适合显示的额外信息
Using index,MySQL将使用覆盖索引,以避免访问表(就是仅仅使用了索引中信息而没有读取表中)
Using where,意味着MySQL服务器将在存储引擎检索行后在进行过滤(将会通过WHERE条件来筛选存储引擎返回的记录)
Using temporary,意味着MySQL在对查询结果排序时会用到一个临时表.
Using filesort,意味着MySQL会对结果使用一个外部索引排序,而不是按索引次序从表里读出来.
Rangechecked for each record(indexmap:N),意味着没有好用的索引,新的索引将在联接的每一行上重新估算,N代表possible_keys列中索引的位图,并且是冗余的。

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 English version
Recommended: Win version, supports code prompts!
