문제
Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN.
The CITY table is described as follows:
풀이
select * from city where countrycode = 'JPN';
'algorithm' 카테고리의 다른 글
[HackerRank] Java - Welcome to Java! (0) | 2022.08.11 |
---|---|
[HackerRank] MySQL - Japanese Cities' Names (0) | 2022.08.11 |
[programmers] MySQL - Lv.2 최솟값 구하기 (sum, max, min) (0) | 2022.08.10 |
[programmers] MySQL - Lv.2 루시와 엘라 찾기 (string, date) (0) | 2022.08.09 |
[HackerRank] MySQL - Select By ID (0) | 2022.08.09 |