sqlzooのselect within selectの9問目
サブクエリーでa.continent =b.continentになるけどその意味は?

SELECT
name,continent,population
FROM
world A
WHERE
25000000>=ALL(SELECT population
FROM world B
WHERE B.continent=A.continent);


https://sqlzoo.net/wiki/SELECT_within_SELECT_Tutorial/ja