Skip to content

Commit f9c6761

Browse files
authored
Update create-table.sql
1 parent 0cec416 commit f9c6761

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sql-queries-11/single-row-from-join/create-table.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CREATE TABLE IF NOT EXISTS countries
22
(
33
country_id integer NOT NULL,
4-
country_name text ,
4+
country_name text,
55
CONSTRAINT countries_pkey PRIMARY KEY (country_id)
66
);
77

@@ -25,11 +25,11 @@ INSERT INTO countries (country_id, country_name)
2525

2626
INSERT INTO cities (city_id, country_id, city_name, population)
2727
VALUES
28-
( 1, 1, 'Washington',689545),
28+
( 1, 1, 'Washington',689545),
2929
( 2,1,'New York', 8804190),
3030
( 3, 2, 'London', 12208100 ),
3131
( 4 , 2, 'Manchester', 2732854),
3232
( 5, 3, 'Paris', 2048472),
3333
( 6, 3, 'Nice', 353701),
3434
( 7, 4, 'Bangkok', 5588222),
35-
( 8, 4, 'Phuket', 77778);
35+
( 8, 4, 'Phuket', 77778);

0 commit comments

Comments
 (0)