595. Big Countries

# Write your MySQL query statement below

select 
  name,
  population, 
  area
from World
where 
  area >= 3000000
  or population >= 25000000

Last updated