African Cities

Sort by

recency

|

940 Discussions

|

  • + 0 comments

    select city.name from city join country on city.countrycode=country.code where continent="africa"

  • + 0 comments

    Oracle

    SELECT CITY.NAME FROM CITY, COUNTRY WHERE CITY.CountryCode = COUNTRY.Code AND COUNTRY.CONTINENT='Africa';

  • + 1 comment

    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

  • + 0 comments

    select c.name from city as c, country as co where c.countrycode = co.code and co.continent = 'Africa'

  • + 0 comments
    FROM CITY ci
    JOIN COUNTRY co
    ON ci.CountryCode = co.Code
    WHERE co.CONTINENT = 'Africa'