PostgreSQL Query EXPLAIN - kdevkr/mambo-box GitHub Wiki

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