#77. [LeetCode / MySQL] 595. Big Countries
문제 입력 코드 SELECT name, population, area FROM World WHERE area >= 3000000 OR population >= 25000000 코드 설명 #SELECT #WHERE #OR 문제 출처 Big Countries - LeetCode Can you solve this real interview question? Big Countries - Table: World +-------------+---------+ | Column Name | Type | +-------------+---------+ | name | varchar | | continent | varchar | | area | int | | population | int | | gdp | bigint | ..