문제풀이/HackerRank

Japanese Cities' Names

제밍 2022. 11. 2. 10:59

Query the names of all the Japanese cities in the CITY table. The COUNTRYCODE for Japan is JPN.
The CITY table is described as follows:

조건이 이번엔 모든 컬럼이 아닌, 이름만 가져오라 했으니까

 

SELECT NAME 
FROM CITY
WHERE COUNTRYCODE = 'JPN' ;

 

 

 

 

Japanese Cities' Names | HackerRank

 

Japanese Cities' Names | HackerRank

In this challenge, you will query a list of all the Japanese cities' names.

www.hackerrank.com