EXPLAIN parameters
EXPLAIN
gives a window into the query plan. It has some optional parameters that provide additional information. You want to try out these optional parameters, focusing on the VERBOSE
and ANALYZE
parameters.
VERBOSE
allows you to see the available columns at each step of the plan. ANALYZE
computes actual run times in milliseconds. Which parameter's output do you find most useful?
Diese Übung ist Teil des Kurses
Improving Query Performance in PostgreSQL
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
___ ___
SELECT *
FROM country_demos;