Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.