J
jeremy
Video
Reading a PostgreSQL EXPLAIN Plan to Spot Sequential Scans and Index-Only Scan Opportunities
EXPLAIN in PostgreSQL prints the plan the query planner chose before any row is read, letting you tell a sequential scan (reading every page of the table) apart from an index scan or an index-only sc…