ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Improving Query Performance in SQL Server

Ver curso

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

SELECT WorldBankRegion,
       CountryName,
       ___ -- Capital city name column
FROM Nations
WHERE Capital NOT IN
	(SELECT ___ -- City name column
     FROM Earthquakes);
Editar y ejecutar código