Snoopy [해커랭크/SQL] 5. Japanese Cities' Names
코딩테스트/해커랭크 SQL

[해커랭크/SQL] 5. Japanese Cities' Names

Sooyoon Jeong 2022. 12. 11.
 

Japanese Cities' Names | HackerRank

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

www.hackerrank.com


🤔 문제 분석

1) Query the names of all the Japanese cities in the CITY table.

2) The COUNTRYCODE for Japan is JPN.

 

💡 풀이

SELECT NAME
FROM CITY
WHERE COUNTRYCODE = "JPN"
 

댓글