Skip to content

Commit

Permalink
Update sql-statements/sql-statement-show-variables.md
Browse files Browse the repository at this point in the history
Co-authored-by: kennytm <[email protected]>
  • Loading branch information
2 people authored and ti-chi-bot committed Apr 10, 2024
1 parent 8be836a commit a88d7f1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sql-statements/sql-statement-show-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ This statement shows a list of variables for the scope of either `GLOBAL` or `SE

```ebnf+diagram
ShowVariablesStmt ::=
"SHOW" ("GLOBAL" | "SESSION")? VARIABLES ( "LIKE" stringLit | "WHERE" ("Variable_name" | "Value") "=" stringLit)?
"SHOW" ("GLOBAL" | "SESSION")? VARIABLES ShowLikeOrWhere?
ShowLikeOrWhere ::=
"LIKE" SimpleExpr
| "WHERE" Expression
```

## Examples
Expand Down

0 comments on commit a88d7f1

Please sign in to comment.