Prepare > SQL > Basic Select > Japanese Cities' Attributes

2023. 7. 6. 19:09HackerRank-My SQL

 

Japanese Cities' Attributes | HackerRank

Query the attributes of all the cities in Japan.

www.hackerrank.com

 

문제


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

 

 

 

 

코드


SELECT * FROM CITY
WHERE COUNTRYCODE = 'JPN';