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
+ 0 comments MY SQL JOIN
select city.name from city join country on city.countrycode = country.code where country.continent = 'Africa';
+ 0 comments SELECT C.NAME FROM CITY C JOIN COUNTRY CTR ON C.COUNTRYCODE = CTR.CODE WHERE CONTINENT = 'AFRICA';
+ 0 comments Select city.name from city join country on city.countrycode = country.code where country.continent ='Africa';
+ 0 comments select c.name from city As c inner join country As t on c.countrycode=t.code AND t.continent="Africa";
+ 1 comment SELECT city.district FROM CITY INNER JOIN COUNTRY ON CITY.CountryCode=COUNTRY.Code WHERE continent = "Africa";
What's wrong with my query?
Load more conversations
Sort 640 Discussions, By:
Please Login in order to post a comment