반응형
츄르사려고 코딩하는집사입니다.
1. [HackerRank] Revising the Select Query II SQL
2. 문제 출처
https://www.hackerrank.com/challenges/revising-the-select-query-2/problem
3. 문제
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:
4. 소스 코드
SELECT NAME FROM CITY
WHERE POPULATION > 120000
AND COUNTRYCODE = 'USA';
반응형
'알고리즘 > HackerRank' 카테고리의 다른 글
[HackerRank] Weather Observation Station 4 SQL (0) | 2021.09.06 |
---|---|
[HackerRank] Weather Observation Station 3 SQL (0) | 2021.09.06 |
[HackerRank] Weather Observation Station 1 SQL (0) | 2021.09.06 |
[HackerRank] Japanese Cities' Names SQL (0) | 2021.09.06 |
[HackerRank] Japanese Cities' Attributes SQL (0) | 2021.09.06 |
[HackerRank] Select By ID SQL (0) | 2021.09.06 |
[HackerRank] Select All SQL (0) | 2021.09.06 |
[HackerRank] Revising the Select Query I SQL (0) | 2021.09.06 |
최근댓글