We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- SQL
- Basic Join
- African Cities
- Discussions
African Cities
African Cities
Sort by
recency
|
973 Discussions
|
Please Login in order to post a comment
select c.name from city as c join country as co on C.CountryCode = CO.Code where continent = "Africa"
select city.name from city left join country on city.countrycode=country.code where country.continent='Africa';
SELECT CI.NAME. CO.CONTINENT FROM CITY CI LEFTJOIN COUNTRY CO ON CI.COUNTRYCODE = CO.CODE WHERE CO.CONTINENT = 'Africa';
select CITY.NAME from CITY left join COUNTRY on CITY.CountryCode = COUNTRY.Code where CONTINENT = 'Africa';