728x90
반응형
https://www.hackerrank.com/challenges/revising-the-select-query-2/problem?isFullScreen=true
문제
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:
Code
SELECT NAME
FROM CITY
WHERE POPULATION > 120000 AND COUNTRYCODE = 'USA';
728x90
반응형
'SQL > MySQL' 카테고리의 다른 글
[MySQL/HackerRank] Select By ID (0) | 2023.08.12 |
---|---|
[MySQL/HackerRank] Select All (0) | 2023.08.12 |
[MySQL/HackerRank] Revising the Select Query I (0) | 2023.08.12 |
[MySQL/Programmers] 상품을 구매한 회원 비율 구하기 (0) | 2023.08.10 |
[MySQL/Programmers] 자동차 대여 기록 별 대여 금액 구하기 (0) | 2023.08.10 |