From f1d56677f02040e2962857d55840ece60913ebe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Thu, 18 Apr 2024 04:43:37 +0200 Subject: [PATCH] ebnf show profiles (#17070) --- 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 1179466688037..b6734b58f5583 100644 --- a/sql-statements/sql-statement-show-profiles.md +++ b/sql-statements/sql-statement-show-profiles.md @@ -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; ```