From 0009737e718d5b208f46f737494dd674520eaafe Mon Sep 17 00:00:00 2001 From: Nico Kruber Date: Wed, 3 Mar 2021 13:32:06 +0100 Subject: [PATCH] [hotfix][docs] wrong brackets in CREATE VIEW statement --- docs/content/docs/dev/table/sql/create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/dev/table/sql/create.md b/docs/content/docs/dev/table/sql/create.md index 0e7e2e96e74e5..9113ba7eada72 100644 --- a/docs/content/docs/dev/table/sql/create.md +++ b/docs/content/docs/dev/table/sql/create.md @@ -559,7 +559,7 @@ The key and value of expression `key1=val1` should both be string literal. ## CREATE VIEW ```sql CREATE [TEMPORARY] VIEW [IF NOT EXISTS] [catalog_name.][db_name.]view_name - [{columnName [, columnName ]* }] [COMMENT view_comment] + [( columnName [, columnName ]* )] [COMMENT view_comment] AS query_expression ```