Im between cherry

Hackerrank | MySQL | Japanese Cities' Attributes 본문

데이터분석/practice_query

Hackerrank | MySQL | Japanese Cities' Attributes

meal 2020. 8. 27. 18:02

Japanese Cities' Attributes

Problem

Query all attributes of every Japanese city in the CITY table. The COUNTRYCODE for Japan is JPN.

The CITY table is described as follows:

 

Japanese Cities' Attributes | HackerRank

Query the attributes of all the cities in Japan.

www.hackerrank.com

Solution

SELECT *
FROM CITY
WHERE countrycode = 'JPN'
Comments