Algorithm/SQL Query test
[MySQL] HackerRank - Japanese Cities' Names
๊ฐ์ ๐ฅ
2021. 7. 20. 02:45
๋ฐ์ํ
๋ฌธ์
https://www.hackerrank.com/challenges/japanese-cities-name/problem
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 Japanese is JPN. the CITY table is described as follows.
์ ๋ต
SELECT NAME
FROM CITY
WHERE COUNTRYCODE LIKE 'JPN'
๋ฐ์ํ