Skip to content

Commit

Permalink
sql-statements: change an example in EXPLAIN page from desc to `exp…
Browse files Browse the repository at this point in the history
…lain` (pingcap#9616)
  • Loading branch information
time-and-fate authored Jun 3, 2022
1 parent 9220bed commit 2930c4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql-statements/sql-statement-explain.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ EXPLAIN DELETE FROM t1 WHERE c1=3;

```sql
create table t(a bigint, b bigint);
desc format = "dot" select A.a, B.b from t A join t B on A.a > B.b where A.a < 10;
explain format = "dot" select A.a, B.b from t A join t B on A.a > B.b where A.a < 10;
```

```
Expand Down

0 comments on commit 2930c4e

Please sign in to comment.