728x90
문제
Query the NAME field for all American cities in the CITY table with populations larger than 120000.
The CountryCode for America is USA.
The CITY table is described as follows:
https://www.hackerrank.com/challenges/revising-the-select-query-2/problem?isFullScreen=true
문제 풀이
SELECT Name
FROM City
WHERE CountryCode = 'USA' AND POPULATION > 120000;
SQL을 독학하시는 분들에게 도움이 되길 바라며,
혹 더 좋은 방법이 있거나 오류가 있다면 편하게 말씀 부탁드립니다.
728x90