SQL/MySQL

[MySQL/HackerRank] Japanese Cities' Names

NLP Developer 2023. 8. 12. 16:52
728x90
반응형

https://www.hackerrank.com/challenges/japanese-cities-name/problem?isFullScreen=true 

 

Japanese Cities' Names | HackerRank

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

www.hackerrank.com

문제

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:

Code

SELECT NAME
FROM CITY
WHERE COUNTRYCODE = 'JPN'
728x90
반응형