Skip to content

Commit

Permalink
Update explain.md
Browse files Browse the repository at this point in the history
  • Loading branch information
soyeric128 committed Dec 5, 2022
1 parent c8aa46b commit 9fcf19f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/doc/14-sql-commands/90-explain-cmds/explain.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: EXPLAIN

Shows the execution plan of a SQL statement. An execution plan is shown as a tree consisting of different operators where you can see how Databend will execute the SQL statement. An operator usually includes one or more fields describing the actions Databend will perform or the objects related to the query.

For example, the following execution plan returned by the EXPLAIN command includes an operator named *TableScan* with several fields. For a list of common operators and fields, see [Common Operators](#common-operators).
For example, the following execution plan returned by the EXPLAIN command includes an operator named *TableScan* with several fields. For a list of common operators and fields, see [Common Operators and Fields](#common-operators-and-fields).

```sql
EXPLAIN SELECT * FROM allemployees;
Expand Down

0 comments on commit 9fcf19f

Please sign in to comment.