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
|
940 Discussions
|
Please Login in order to post a comment
select city.name from city join country on city.countrycode=country.code where continent="africa"
Oracle
SELECT CITY.NAME FROM CITY, COUNTRY WHERE CITY.CountryCode = COUNTRY.Code AND COUNTRY.CONTINENT='Africa';
select city.name from city right join country on city.countrycode = country.code where country.continent = 'Africa'; This is my code for african cities question where is the error in this question please explain I have written this code in Microsoft SQL
select c.name from city as c, country as co where c.countrycode = co.code and co.continent = 'Africa'