6 lines
145 B
SQL
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
|