RSSAmplifier

Dylan Paulus' Blog · Jul 30, 2024

Explaining PostgreSQL EXPLAIN

0
Sign in to vote or save

This page did not load. You can still read it on the original site — the toolbar below keeps your place in the directory.

EXPLAIN is a command we prepend to queries to tell us what operations PostgreSQL plans to run for that query, how many rows each operation touches in the database(s), and how long those operations take. EXPLAIN is the go-to performance diagnostic tool for discovering what is causing a query to run slowly.

Read on dylanpaulus.com

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.