728x90
반응형
https://www.hackerrank.com/challenges/revising-the-select-query/problem?isFullScreen=true
문제
Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA.
The CITY table is described as follows:
Code
SELECT *
FROM CITY
WHERE COUNTRYCODE = 'USA' AND POPULATION > 100000
728x90
반응형
'SQL > MySQL' 카테고리의 다른 글
[MySQL/HackerRank] Select All (0) | 2023.08.12 |
---|---|
[MySQL/HackerRank] Revising the Select Query II (0) | 2023.08.12 |
[MySQL/Programmers] 상품을 구매한 회원 비율 구하기 (0) | 2023.08.10 |
[MySQL/Programmers] 자동차 대여 기록 별 대여 금액 구하기 (0) | 2023.08.10 |
[MySQL/Programmers] 특정 기간동안 대여 가능한 자동차들의 대여비용 구하기 (0) | 2023.08.10 |