Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions sql-statements/sql-statement-show-create-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ This statement shows the exact statement to recreate an existing table using SQL

## Synopsis

**ShowStmt:**
**ShowCreateTableStmt:**

![ShowStmt](/media/sqlgram/ShowStmt.png)
![ShowCreateTableStmt](/media/sqlgram/ShowCreateTableStmt.png)

**TableName:**

Expand Down
4 changes: 2 additions & 2 deletions sql-statements/sql-statement-show-create-user.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ This statement shows how to re-create a user using the `CREATE USER` syntax.

## Synopsis

**ShowStmt:**
**ShowCreateUserStmt:**

![ShowStmt](/media/sqlgram/ShowStmt.png)
![ShowCreateUserStmt](/media/sqlgram/ShowCreateUserStmt.png)

**Username:**

Expand Down
8 changes: 4 additions & 4 deletions sql-statements/sql-statement-show-databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ This statement shows a list of databases that the current user has privileges to

## Synopsis

**ShowStmt:**
**ShowDatabasesStmt:**

![ShowStmt](/media/sqlgram/ShowStmt.png)
![ShowDatabasesStmt](/media/sqlgram/ShowDatabasesStmt.png)

**ShowTargetFilterable:**
**ShowLikeOrWhereOpt:**

![ShowTargetFilterable](/media/sqlgram/ShowTargetFilterable.png)
![ShowLikeOrWhereOpt](/media/sqlgram/ShowLikeOrWhereOpt.png)

## Examples

Expand Down
16 changes: 14 additions & 2 deletions sql-statements/sql-statement-show-grants.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,26 @@ This statement shows a list of privileges associated with a user. As in MySQL, t

## Synopsis

**ShowStmt:**
**ShowGrantsStmt:**

![ShowStmt](/media/sqlgram/ShowStmt.png)
![ShowGrantsStmt](/media/sqlgram/ShowGrantsStmt.png)

**Username:**

![Username](/media/sqlgram/Username.png)

**UsingRoles:**

![UsingRoles](/media/sqlgram/UsingRoles.png)

**RolenameList:**

![RolenameList](/media/sqlgram/RolenameList.png)

**Rolename:**

![Rolename](/media/sqlgram/Rolename.png)

## Examples

```sql
Expand Down