selectname,population from world where population > (select population from world wherename='Canada') and population <(select population from world wherename='Poland') orderbyname
5、
Germany (population 80 million) has the largest population of the countries in Europe. Austria (population 8.5 million) has 11% of the population of Germany.
Show the name and the population of each country in Europe. Show the population as a percentage of the population of Germany.
select continent,namefrom world x where x.name=(select y.namefrom world y where y.continent=x.continent orderbyname limit 1)
9、Find the continents where all countries have a population <= 25000000. Then find the names of the countries associated with these continents. Show name, continent and population.
selectname,continent from world x where x.population/3 >= all(select population from world y where x.continent=y.continent and x.name!=y.nameand y.population>0)