Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 615 Bytes

_595. Big Countries.md

File metadata and controls

35 lines (25 loc) · 615 Bytes

All prompts are owned by LeetCode. To view the prompt, click the title link above.

Back to top


First completed : May 22, 2024

Last updated : July 01, 2024


Related Topics : Database

Acceptance Rate : 68.15 %


Solutions

SQL

SELECT
    name, population, area
FROM
    World
WHERE
    area >= 3000000
    OR population >= 25000000;