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
|
954 Discussions
|
Please Login in order to post a comment
SELECT C.NAME FROM CITY C JOIN COUNTRY CC ON CC.CODE = C.COUNTRYCODE WHERE CC.CONTINENT = 'Africa'
select name from city where countrycode in (select code from country where continent='Africa');
ngoccth_SQL SERVER: SELECT city.name FROM City JOIN Country ON CITY.CountryCode = COUNTRY.Code WHERE CONTINENT = 'Africa'
SELECT CITY.NAME FROM CITY, COUNTRY WHERE CITY.CountryCode=COUNTRY.Code AND COUNTRY.CONTINENT='Africa';