mirror of
https://github.com/devenperez/leetcode.git
synced 2026-06-13 14:57:08 +00:00
7 lines
142 B
SQL
7 lines
142 B
SQL
# Write your MySQL query statement below
|
|
SELECT
|
|
name,
|
|
population,
|
|
area
|
|
FROM World
|
|
WHERE area >= 3000000 OR population >= 25000000; |