Answers for "Given the CITY and COUNTRY tables, query the names of all cities where the CONTINENT is 'Africa'."

0

Given the CITY and COUNTRY tables, query the names of all cities where the CONTINENT is 'Africa'.

SELECT i.NAME FROM CITY AS i JOIN COUNTRY AS o ON i.COUNTRYCODE=o.CODE WHERE o.CONTINENT='Africa'
Posted by: Guest on January-11-2021

Code answers related to "Given the CITY and COUNTRY tables, query the names of all cities where the CONTINENT is 'Africa'."

Code answers related to "TypeScript"

Browse Popular Code Answers by Language