African Cities

Sort by

recency

|

1039 Discussions

|

  • + 0 comments

    SELECT CITY.NAME FROM CITY JOIN COUNTRY ON CITY.CountryCode = COUNTRY.Code WHERE CONTINENT = "Africa";

  • + 0 comments

    SELECT CITY.NAME FROM CITY JOIN COUNTRY ON CITY.CountryCode = COUNTRY.Code WHERE CONTINENT = "Africa";

  • + 0 comments

    Sol 1: (with help of comma-separated join)

    select city.name from city,country where country.continent='Africa' and city.countrycode=country.code;

    Sol 2: (with JOIN)

    Select city.name from city join country on city.countrycode=country.code where country.continent = 'Africa';

  • + 0 comments

    African Cities - SOLUTION

    select c.name from city as c join country as cc on c.countrycode = cc.code where cc.continent = 'Africa'

  • + 0 comments
    SELECT CITY.Name
    FROM CITY
    JOIN COUNTRY
    ON CITY.CountryCode = COUNTRY.Code
    WHERE COUNTRY.Continent = 'Africa';