Skip to content

Commit 3de6ae5

Browse files
authored
Update create-table.sql
1 parent f9c6761 commit 3de6ae5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS cities
1414
CONSTRAINT cities_pkey PRIMARY KEY (city_id),
1515
CONSTRAINT country_id FOREIGN KEY (country_id)
1616
REFERENCES countries (country_id)
17-
)
17+
);
1818

1919
INSERT INTO countries (country_id, country_name)
2020
VALUES

0 commit comments

Comments
 (0)