Skip to content

Commit 07e356b

Browse files
authored
Merge pull request #12 from ionisingTuna/patch-1
Update 2_solutions.sql
2 parents 6d28ae4 + 3e7cf0c commit 07e356b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

2_solutions.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SELECT name, continent, population FROM world;
55
--2. Show the name for the countries that have a population of at least 200 million.
66

77
SELECT name FROM world
8-
WHERE population>200000000;
8+
WHERE population>=200000000;
99

1010
--3. Give the name and the per capita GDP for those countries with a population of at least 200 million.
1111

0 commit comments

Comments
 (0)