Problem Statement
A description of the problem can be found on Hackerrank.
Solution
Select only Name
s and filter by CountryCode
equals to 'JPN'
.
I created solution in:
All solutions are also available on my GitHub.
SQL
1 |
select Name from City where CountryCode = 'JPN'; |