WHERE y.continent=x.continent
,原始查询
SELECT continent, name, population
FROM world x
WHERE population >= ALL (SELECT population
FROM world y
WHERE y.continent = x.continent
AND population > 0)
答案 0 :(得分:0)
ALL (SELECT population FROM world y WHERE y.continent=x.continent AND population>0)
查询的这一部分返回一组基于大陆的人口,其中人口大于零。
y.continent=x.continent
是表world