Skip to content

PostgreSQL Query EXPLAIN

Mambo edited this page Sep 8, 2024 · 10 revisions

https://www.postgresql.org/docs/current/using-explain.html

EXPLAIN SELECT * FROM "user";
EXPLAIN ANALYZE SELECT * FROM "user";
EXPLAIN (ANALYZE, FORMAT JSON) SELECT * FROM "user";

PostgreSQL Table Scan Types

https://pganalyze.com/docs/explain/scan-nodes

  • Sequential Scan
  • Index Scan (with backward)
  • Index Only Scan
  • Bitmap Index Scan
  • Bitmap Heap Scan

Clone this wiki locally