Chenzilla/SQL_Zoo

wrong answer

Opened this issue · 1 comments

 SELECT name FROM world WHERE gdp/population > (SELECT gdp/population FROM world WHERE name = 'United Kingdom');

correct answer is

SELECT name FROM world
WHERE continent='Europe' AND gdp/population > (SELECT gdp/population FROM world WHERE name='United Kingdom')

It is actually updated to:
Which country has a population that is more than United Kingdom but less than Germany? Show the name and the population.