Incorporating NULL into answer SELECT name FROM world WHERE gdp > ALL(SELECT gdp FROM world WHERE gdp IS NOT NULL AND continent = 'Europe') AND continent != 'Europe'
Incorporating NULL into answer
SELECT name FROM world
WHERE gdp > ALL(SELECT gdp FROM world WHERE gdp IS NOT NULL
AND continent = 'Europe')
AND continent != 'Europe'