DEV Community

Debesh P.
Debesh P.

Posted on

595. Big Countries | LeetCode | SQL 50 | Interview Questions | MySQL

Problem Link

https://leetcode.com/problems/big-countries/


leetcode 595


Solution

# Write your MySQL query statement below
select 
    name,
    population,
    area
from
    World
where
    area >= 3000000
    or population >= 25000000;
Enter fullscreen mode Exit fullscreen mode

Top comments (0)