SQL/HackerRank
[MySQL/HackerRank] Japanese Cities' Attributes
Outside Calf
2022. 7. 24. 22:44
Question
Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN.
The CITY table is described as follows:
My Answer
SELECT *
FROM CITY
WHERE COUNTRYCODE = 'JPN';
Result
출처 : https://www.hackerrank.com/challenges/japanese-cities-attributes/problem
Japanese Cities' Attributes | HackerRank
Query the attributes of all the cities in Japan.
www.hackerrank.com