Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg committed Jun 8, 2024
1 parent 7abb1ee commit 9a25a46
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/sql/statements/pivot.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9a25a46

Please sign in to comment.