79162580

Date: 2024-11-06 12:33:32
Score: 2.5
Natty:
Report link

SELECT continent,name from ( SELECT continent, name, ROW_NUMBER() OVER (PARTITION BY continent ORDER BY name) AS row_num FROM world ) AS ranked WHERE row_num = 1;

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