Skip to content

Commit

Permalink
Fix EBNF for SHOW CREATE DATABASE
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Apr 11, 2024
1 parent 5c38f7e commit f56b14e
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: An overview of the use of SHOW CREATE DATABASE in the TiDB database.

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

## Examples
Expand Down

0 comments on commit f56b14e

Please sign in to comment.