Milky's note

[HackerRank](E) Japanese Cities' Attributes 본문

SQL/SQL 코딩 테스트-HackerRank

[HackerRank](E) Japanese Cities' Attributes

밀뿌 2022. 3. 16. 14:25

https://www.hackerrank.com/challenges/japanese-cities-attributes/problem?isFullScreen=true 

 

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.

The CITY table is described as follows:

 

[답]

- oracle

select * from city
where countrycode = 'JPN';
Comments