본문 바로가기

SQL

(SQL) - LeetCode (easy) 595. Big Countries

반응형

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

 

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 | +-----------

leetcode.com

where을 사용해본 문제였습니다.

📕 풀이방법

📔 풀이과정

정해진 조건에 해당하는 name, population, area 열을 world table에서 select해줍니다.


📕 Code

📔 SQL

select name, population, area from world
where area >= 3000000 or population >= 25000000

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.