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
11 changes: 7 additions & 4 deletions sql-statements/sql-statement-show-profiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@ The `SHOW PROFILES` statement currently only returns an empty result.

## Synopsis

**ShowStmt:**
```ebnf+diagram
ShowProfilesStmt ::=
"SHOW" "PROFILES" ShowLikeOrWhere?

![ShowStmt](/media/sqlgram/ShowStmt.png)
ShowLikeOrWhere ::=
"LIKE" SimpleExpr
| "WHERE" Expression
```

## Examples

{{< copyable "sql" >}}

```sql
SHOW PROFILES;
```
Expand Down