Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
time-and-fate committed May 27, 2022
1 parent 948d3e0 commit 3ba0ba4
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 3ba0ba4

Please sign in to comment.