Files
leetcode/src/exercises/595.big-countries.sql
2025-07-14 10:46:28 -04:00

6 lines
145 B
SQL

# Write your MySQL query statement below
select w.name, w.population, w.area
from world as w
where w.area >= 3000000
or w.population >= 25000000