mun dev

[HackerRank] Revising the Select Query II 오라클 풀이 본문

알고리즘/HackerRank

[HackerRank] Revising the Select Query II 오라클 풀이

mndev 2024. 2. 2. 13:35

문제링크

 

Revising the Select Query II | HackerRank

Query the city names for all American cities with populations larger than 120,000.

www.hackerrank.com

 

 

코드

select name
from city
where countrycode = 'USA' and population >=120000;