I am solving few sql queries myself,
in a question , which says
Find the largest country (by area) in each continent, show the continent, the name and the area:
SELECT continent, name, area
FROM world x
WHERE area >= ALL
(SELECT area FROM world y
WHERE y.continent=x.continent
AND area>0)
I don't understand what does he mean by world x and world y ? could anyone please explain that?