From 9a25a4658937bbc1ddfcb9737ebc2bba6776e2d6 Mon Sep 17 00:00:00 2001 From: Gabor Szarnyas Date: Sat, 8 Jun 2024 10:33:15 +0200 Subject: [PATCH] Formatting --- docs/sql/statements/pivot.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/sql/statements/pivot.md b/docs/sql/statements/pivot.md index 695e50de4ba..9df55b0decb 100644 --- a/docs/sql/statements/pivot.md +++ b/docs/sql/statements/pivot.md @@ -33,7 +33,9 @@ The `ON`, `USING`, and `GROUP BY` clauses are each optional, but they may not al All examples use the dataset produced by the queries below: ```sql -CREATE TABLE Cities (Country VARCHAR, Name VARCHAR, Year INTEGER, Population INTEGER); +CREATE TABLE Cities ( + Country VARCHAR, Name VARCHAR, Year INTEGER, Population INTEGER +); INSERT INTO Cities VALUES ('NL', 'Amsterdam', 2000, 1005); INSERT INTO Cities VALUES ('NL', 'Amsterdam', 2010, 1065); INSERT INTO Cities VALUES ('NL', 'Amsterdam', 2020, 1158);