본문 바로가기
Develop/Database

[Leetcode] 595. Big Countries (MySQL) 문제 및 풀이

by 초코칩프라푸치노 2021. 12. 22.

문제) Leetcode - SQL - Big Countries

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

 

Big Countries - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

 

면적이 300000 이상, 인구수가 25000000 이상인 국가를 찾는 문제였습니다. select, from, where 문으로 쉽게 해결할 수 있는 문제였습니다.

 

풀이)

select w.name, w.population, w.area
from World w
where w.population >= 25000000 or w.area >= 3000000
반응형

댓글