From 247b52b08fec58615ab7c801cf3f943ba1fa2d27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Tue, 9 Apr 2024 09:16:02 +0200 Subject: [PATCH] ebnf show profiles --- sql-statements/sql-statement-show-profiles.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/sql-statements/sql-statement-show-profiles.md b/sql-statements/sql-statement-show-profiles.md index 90466c49ecf00..8a7341ea72a07 100644 --- a/sql-statements/sql-statement-show-profiles.md +++ b/sql-statements/sql-statement-show-profiles.md @@ -9,14 +9,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; ```