Two database tables:
Continent
table withContinentID
andContinentName
columnsCity
table withCityID
,CityName
andContinentName
columns
Situation:
I want to combine the corresponding city to its continent. Like Europe
(continent) has Denmark
(country).
However, what's wrong with my SQL statement?
select
CountryID, CountryName
from
Country
where
Country.ContientID = Contient.ContientID;