Optimizing Queries with EXPLAIN
The EXPLAIN statement can be used either as a way to obtain information about how MariaDB executes a statement, or as a synonym for DESCRIBE:
- When you precede a statement with the keyword
EXPLAIN, MariaDB displays information from the optimizer about the query execution plan. That is, MariaDB explains how it would process the statement, including information about how tables are joined and in which order.EXPLAIN EXTENDEDcan be used to provide additional information.As of MariaDB 5.6.3,
EXPLAINprovides information aboutSELECT,DELETE,INSERT,REPLACE, andUPDATEstatements. Before MariaDB 5.6.3,EXPLAINprovides information only aboutSELECTstatements.The following sections describe how to use
EXPLAINandEXPLAIN EXTENDEDto obtain query execution plan information. EXPLAIN PARTITIONSis useful only when examining queries involving partitioned tables. For details, see , "Obtaining Information About Partitions".EXPLAINis synonymous withtbl_nameDESCRIBEortbl_nameSHOW COLUMNS FROM. For information abouttbl_nameDESCRIBEandSHOW COLUMNS, see , "DESCRIBESyntax", and , "SHOW COLUMNSSyntax".
With the help of EXPLAIN, 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 use EXPLAIN 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 a SELECT statement, begin the statement with SELECT STRAIGHT_JOIN rather than just SELECT. (See , "SELECT Syntax".)
The optimizer trace may sometimes provide information complementary to that of EXPLAIN. However, the optimizer trace format and content are subject to change between versions'. For details, see MySQL Internals: Optimizer tracing.
If you have a problem with indexes not being used when you believe that they should be, run ANALYZE TABLE to update table statistics, such as cardinality of keys, that can affect the choices the optimizer makes. See , "ANALYZE TABLE Syntax".