IniziaInizia gratis

Basic EXPLAIN

Checking the query plan is an excellent window into the query function. Seeing the query plan steps helps you understand if you can restructure your query or add additional conditions to limit the rows and improve query speed. Comparing the relative costs between different query structures helps you see which plan is more efficient.

Here, you will be examining USA daily air quality data. First, familiarize yourself with running a query that will show the query plan.

Questo esercizio fa parte del corso

Improving Query Performance in PostgreSQL

Visualizza il corso

Istruzioni dell'esercizio

  • Write a query to choose all the columns and rows from the daily_aqi table.
  • Add the EXPLAIN command to show the query plan.

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

___
SELECT * 
FROM ___;
Modifica ed esegui il codice