SELECT what you need
Your friend is a seismologist, and she is doing a study on earthquakes in South East Asia. She asks you for a query that returns coordinate locations, strength, depth and nearest city of all earthquakes in Papua New Guinea and Indonesia.
All the information you need is in the Earthquakes
table, and your initial interrogation of the data tells you that the column for the country code is Country
and that the Codes for Papua New Guinea and Indonesia are PG
and ID
respectively.
Este ejercicio forma parte del curso
Improving Query Performance in SQL Server
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
SELECT ___ -- Select all rows and columns
FROM Earthquakes;