- Published on
Hackerrank - African Cities solution
- Authors
- Name
- Imran Pollob
- Website
- @pollmix
Solution one:
select city.name from city left join country on city.countrycode = country.code where continent = 'africa';
select city.name from city left join country on city.countrycode = country.code where continent = 'africa';