From 9a65a2aa9a821507ccc33de63a25d4b8a9d5f44a Mon Sep 17 00:00:00 2001 From: Grace Cai Date: Thu, 21 Dec 2023 12:01:35 +0800 Subject: [PATCH] Update sql-statements/sql-statement-explain.md Co-authored-by: xixirangrang --- sql-statements/sql-statement-explain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql-statements/sql-statement-explain.md b/sql-statements/sql-statement-explain.md index f1249a3d3df01..9e0918facfa9a 100644 --- a/sql-statements/sql-statement-explain.md +++ b/sql-statements/sql-statement-explain.md @@ -195,7 +195,7 @@ To specify the format of the `EXPLAIN` output, you can use the `FORMAT = xxx` sy | `dot` | The `EXPLAIN` statement outputs DOT execution plans, which can be used to generate PNG files through a `dot` program (in the `graphviz` package). | | `row` | The `EXPLAIN` statement outputs results in a tabular format. See [Understand the Query Execution Plan](/explain-overview.md) for more information. | | `tidb_json` | The `EXPLAIN` statement outputs execution plans in JSON and stores the operator information in a JSON array. | -| `verbose` | The `EXPLAIN` statement outputs results in the `row` format, with an additional `estCost` column for the estimated cost of the query in the results. See [SQL Plan Management](/sql-plan-management.md) for how this format can be used. | +| `verbose` | The `EXPLAIN` statement outputs results in the `row` format, with an additional `estCost` column for the estimated cost of the query in the results. For more information about how to use this format, see [SQL Plan Management](/sql-plan-management.md). | | `plan_cache` | The `EXPLAIN` statement outputs results in the `row` format, with the [Plan Cache](/sql-non-prepared-plan-cache.md#diagnostics) information as a warning. |