EXPLAIN
Function
EXPLAIN shows the execution plan of an SQL statement.
The execution plan shows how the tables referenced by the SQL statement will be scanned, for example, by plain sequential scan or index scan. If multiple tables are referenced, the execution plan also shows what join algorithms will be used to bring together the required rows from each input table.
The most critical part of the display is the estimated statement execution cost, which is the planner's guess at how long it will take to run the statement.
The ANALYZE option causes the statement to be executed, not only planned. Then actual runtime statistics are added to the display, including the total elapsed time expended within each plan node (in milliseconds) and the total number of rows it actually returned. This is useful to check whether the planner's estimates are close to reality.
Precautions
The statement is executed when the ANALYZE option is used. To use EXPLAIN ANALYZE on an INSERT, UPDATE, DELETE, CREATE TABLE AS, or EXECUTE statement without letting the command affect your data, use this approach:
1 2 3 |
START TRANSACTION; EXPLAIN ANALYZE ...; ROLLBACK; |
Syntax
- Display the execution plan of an SQL statement, which supports multiple options and has no requirements for the order of options.
1
EXPLAIN [ ( option [, ...] ) ] statement;
The syntax of the option clause is as follows:
1 2 3 4 5 6 7 8 9 10 11 12
ANALYZE [ boolean ] | ANALYSE [ boolean ] | VERBOSE [ boolean ] | COSTS [ boolean ] | CPU [ boolean ] | DETAIL [ boolean ] | NODES [ boolean ] | NUM_NODES [ boolean ] | BUFFERS [ boolean ] | TIMING [ boolean ] | PLAN [ boolean ] | FORMAT { TEXT | XML | JSON | YAML }
- Display the execution plan of an SQL statement, where options are in order:
1
EXPLAIN { [ { ANALYZE | ANALYSE } ] [ VERBOSE ] | PERFORMANCE } statement;
- Display information required for reproducing the execution plan of an SQL statement. The information is usually used for fault locating. The STATS option must be used independently:
1
EXPLAIN ( STATS [ boolean ] ) statement;
Parameter Description
- statement
Specifies the SQL statement to explain.
- ANALYZE boolean | ANALYSE boolean
Displays the actual run times and other statistics.
Valid value:
- TRUE (default value): Displays the actual run times and other statistics.
- FALSE: No display.
- VERBOSE boolean
Displays additional information regarding the plan.
Valid value:
- TRUE (default value): Displays additional information.
- FALSE: No display.
- COSTS boolean
Includes information on the estimated total cost of each plan node, as well as the estimated number of rows and the estimated width of each row.
Valid value:
- TRUE (default): Displays information on the estimated total cost of each plan node and the estimated width of each row.
- FALSE: No display.
- CPU boolean
Prints information on CPU usage.
Valid value:
- TRUE (default value): Displays CPU usage information.
- FALSE: No display.
- DETAIL boolean
Prints DN information.
Valid value:
- TRUE (default value): Prints DN information.
- FALSE: No display.
- NODES boolean
Prints information about the nodes executed by query.
Valid value:
- TRUE (default): Prints information about executed nodes.
- FALSE: No display.
- NUM_NODES boolean
Prints the quantity of executing nodes.
Valid value:
- TRUE (default value): Prints the number of DNs.
- FALSE: No display.
- BUFFERS boolean
Includes information on buffer usage.
Valid value:
- TRUE: Displays information on buffer usage.
- FALSE (default): No display.
- TIMING boolean
Includes the startup time and the time spent on the output node.
Valid value:
- TRUE (Default): Displays the startup time and the time spent on the output node.
- FALSE: No display.
- PLAN
Specifies whether to store the execution plan in PLAN_TABLE. If this parameter is set to on, the execution plan is stored in PLAN_TABLE and is not displayed on the screen. Therefore, this parameter cannot be used together with other parameters when it is set to on.
Valid value:
- on: The execution plan is stored in PLAN_TABLE and is not printed on the screen. It is the default value. If the plan is stored successfully, EXPLAIN SUCCESS is returned.
- off: The execution plan is not stored in PLAN_TABLE and is printed on the screen.
- FORMAT
Specifies the output format.
Value range: TEXT, XML, JSON, and YAML.
Default value: TEXT
- PERFORMANCE
This option prints all relevant information in execution.
- STATS boolean
Specifies whether to display information required for reproducing the execution plan of an SQL statement, including the object definition, statistics, and configuration parameters. The information is usually used for fault locating.
Valid value:
- TRUE (default value): Display information required for reproducing the execution plan of an SQL statement.
- FALSE: No display.
Examples
Create the customer_address_p1 table:
1
|
CREATE TABLE customer_address_p1 AS TABLE customer_address; |
Change the value of explain_perf_mode to normal:
1
|
SET explain_perf_mode=normal; |
Display an execution plan for simple queries in the table:
1
|
EXPLAIN SELECT * FROM customer_address_p1; |
Generate an execution plan in JSON format (assume explain_perf_mode is set to normal):
1
|
EXPLAIN(FORMAT JSON) SELECT * FROM customer_address_p1; |
If there is an index and we use a query with an indexable WHERE condition, EXPLAIN might show a different plan:
1
|
EXPLAIN SELECT * FROM customer_address_p1 WHERE ca_address_sk=10000; |
Generate an execution plan in YAML format (assume explain_perf_mode is set to normal):
1
|
EXPLAIN(FORMAT YAML) SELECT * FROM customer_address_p1 WHERE ca_address_sk=10000; |
Here is an example of an execution plan with cost estimates suppressed:
1
|
EXPLAIN(COSTS FALSE)SELECT * FROM customer_address_p1 WHERE ca_address_sk=10000; |
Here is an example of an execution plan for a query that uses an aggregate function:
1
|
EXPLAIN SELECT SUM(ca_address_sk) FROM customer_address_p1 WHERE ca_address_sk<10000; |
Delete the customer_address_p1 table:
1
|
DROP TABLE customer_address_p1; |
Helpful Links
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot