NOT IN with IS NOT NULL
You want to know which country capitals have never been the closest city to recorded earthquakes. You decide to use NOT IN
to compare Capital
from the Nations
table, in the outer query, with NearestPop
, from the Earthquakes
table, in a sub-query.
Cet exercice fait partie du cours
Improving Query Performance in SQL Server
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
SELECT WorldBankRegion,
CountryName,
___ -- Capital city name column
FROM Nations
WHERE Capital NOT IN
(SELECT ___ -- City name column
FROM Earthquakes);