Get the country with max GDP in Europe via the inner query and then use outer query to get countries having more GDP than the result obtainer from inner query.
select name from world where gdp> ( select max(gdp) from world where continent='Europe' )