PDF (A4) - 35.2Mb
Man Pages (TGZ) - 256.4Kb
Man Pages (Zip) - 361.2Kb
Info (Gzip) - 3.4Mb
Info (Zip) - 3.4Mb
MySQL Globalization
MySQL Information Schema
MySQL Installation Guide
MySQL and Linux/Unix
MySQL and macOS
MySQL Partitioning
MySQL Performance Schema
MySQL Replication
Using the MySQL Yum Repository
MySQL Restrictions and Limitations
Security in MySQL
MySQL and Solaris
Building MySQL from Source
Starting and Stopping MySQL
MySQL Tutorial
MySQL and Windows
MySQL NDB Cluster 7.5
TheEXPLAIN statement provides information about how MySQL executes statements:
EXPLAINworks withSELECT,DELETE,INSERT,REPLACE, andUPDATEstatements.When
EXPLAINis used with an explainable statement, MySQL displays information from the optimizer about the statement execution plan. That is, MySQL explains how it would process the statement, including information about how tables are joined and in which order. For information about usingEXPLAINto obtain execution plan information, seeSection 8.8.2, “EXPLAIN Output Format”.When
EXPLAINis used withFOR CONNECTIONrather than an explainable statement, it displays the execution plan for the statement executing in the named connection. SeeSection 8.8.4, “Obtaining Execution Plan Information for a Named Connection”.connection_idFor
SELECTstatements,EXPLAINproduces additional execution plan information that can be displayed usingSHOW WARNINGS. SeeSection 8.8.3, “Extended EXPLAIN Output Format”.EXPLAINis useful for examining queries involving partitioned tables. SeeSection 22.3.5, “Obtaining Information About Partitions”.The
FORMAToption can be used to select the output format.TRADITIONALpresents the output in tabular format. This is the default if noFORMAToption is present.JSONformat displays the information in JSON format.
With the help ofEXPLAIN, you can see where you should add indexes to tables so that the statement executes faster by using indexes to find rows. You can also useEXPLAIN to check whether the optimizer joins the tables in an optimal order. To give a hint to the optimizer to use a join order corresponding to the order in which the tables are named in aSELECT statement, begin the statement withSELECT STRAIGHT_JOIN rather than justSELECT. (SeeSection 13.2.9, “SELECT Statement”.) However,STRAIGHT_JOIN may prevent indexes from being used because it disables semijoin transformations. SeeSection 8.2.2.1, “Optimizing Subqueries, Derived Tables, and View References with Semijoin Transformations”.
The optimizer trace may sometimes provide information complementary to that ofEXPLAIN. However, the optimizer trace format and content are subject to change between versions. For details, seeSection 8.15, “Tracing the Optimizer”.
If you have a problem with indexes not being used when you believe that they should be, runANALYZE TABLE to update table statistics, such as cardinality of keys, that can affect the choices the optimizer makes. SeeSection 13.7.2.1, “ANALYZE TABLE Statement”.
EXPLAIN can also be used to obtain information about the columns in a table.EXPLAIN is synonymous withtbl_nameDESCRIBE andtbl_nameSHOW COLUMNS FROM. For more information, seeSection 13.8.1, “DESCRIBE Statement”, andSection 13.7.5.5, “SHOW COLUMNS Statement”.tbl_name
PDF (A4) - 35.2Mb
Man Pages (TGZ) - 256.4Kb
Man Pages (Zip) - 361.2Kb
Info (Gzip) - 3.4Mb
Info (Zip) - 3.4Mb
MySQL Globalization
MySQL Information Schema
MySQL Installation Guide
MySQL and Linux/Unix
MySQL and macOS
MySQL Partitioning
MySQL Performance Schema
MySQL Replication
Using the MySQL Yum Repository
MySQL Restrictions and Limitations
Security in MySQL
MySQL and Solaris
Building MySQL from Source
Starting and Stopping MySQL
MySQL Tutorial
MySQL and Windows
MySQL NDB Cluster 7.5