79348044

Date: 2025-01-11 12:15:41
Score: 2
Natty:
Report link

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' )

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: S_V