2 parents 6d28ae4 + 3e7cf0c commit 07e356bCopy full SHA for 07e356b
1 file changed
2_solutions.sql
@@ -5,7 +5,7 @@ SELECT name, continent, population FROM world;
5
--2. Show the name for the countries that have a population of at least 200 million.
6
7
SELECT name FROM world
8
-WHERE population>200000000;
+WHERE population>=200000000;
9
10
--3. Give the name and the per capita GDP for those countries with a population of at least 200 million.
11
0 commit comments