리트코드(LeetCode) SQL - 595. Big Countries

2023. 1. 4. 20:56코딩테스트/리트코드(LeetCode) - SQL Study Plan

 

Plan easy

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