Skip to content

Commit

Permalink
Fix EBNF for SHOW CREATE DATABASE (#17645)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oreoxmt committed Jun 12, 2024
1 parent 41fbefa commit 505d37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql-statements/sql-statement-show-create-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ summary: TiDB 数据库中 SHOW CREATE DATABASE 的使用概况。

```ebnf+diagram
ShowCreateDatabaseStmt ::=
"SHOW" "CREATE" "DATABASE" | "SCHEMA" ("IF" "NOT" "EXISTS")? DBName
"SHOW" "CREATE" ("DATABASE" | "SCHEMA") ("IF" "NOT" "EXISTS")? DBName
```

## 示例
Expand Down

0 comments on commit 505d37b

Please sign in to comment.