postgres://internals

// interactive

Query Lifecycle

Every query you run takes the same journey through Postgres: parsed into a tree, rewritten (views, rules, row-level security), planned into the cheapest execution strategy, then executed row by row. Trace it end to end below — the planner and executor stages run live against a real Postgres in your browser.

query lifecycle · liveone query, top to bottom

press “trace the lifecycle” — watch one query pass through Postgres, stage by stage. The Planner and Executor stages are live from EXPLAIN in your browser.