diff --git a/4_soutions.sql b/4_soutions.sql index 2d1cec0..a53b6d8 100644 --- a/4_soutions.sql +++ b/4_soutions.sql @@ -7,7 +7,7 @@ SELECT name FROM world --2. Show the countries in Europe with a per capita GDP greater than 'United Kingdom'. - SELECT name FROM world WHERE gdp/population > (SELECT gdp/population FROM world WHERE name = 'United Kingdom'); + SELECT name FROM world WHERE gdp/population > (SELECT gdp/population FROM world WHERE name = 'United Kingdom') AND continent = 'Europe'; --3. List the name and continent of countries in the continents containing either Argentina or Australia. Order by name of the country.