Skip to content

Commit

Permalink
ebnf show engines (#17006)
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Apr 10, 2024
1 parent d8d705d commit d40bcb0
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions sql-statements/sql-statement-show-engines.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ This statement is used to list all supported storage engines. The syntax is incl

## Synopsis

**ShowEnginesStmt:**
```enbf+diagram
ShowEnginesStmt ::=
"SHOW" "ENGINES" ShowLikeOrWhere?
![ShowEnginesStmt](/media/sqlgram/ShowEnginesStmt.png)

```sql
SHOW ENGINES;
ShowLikeOrWhere ::=
"LIKE" SimpleExpr
| "WHERE" Expression
```

## Examples
Expand All @@ -32,4 +33,4 @@ mysql> SHOW ENGINES;

## MySQL compatibility

* This statement will always only return InnoDB as the supported engine. Internally, TiDB will typically use TiKV as the storage engine.
* This statement will always only return InnoDB as the supported engine. Internally, TiDB will typically use [TiKV](/tikv-overview.md) as the storage engine.

0 comments on commit d40bcb0

Please sign in to comment.