EXPLAIN explained

Example EXPLAIN plan:


oscon=> explain select oid from pg_proc order by 1;
                           QUERY PLAN                            
-----------------------------------------------------------------
 Sort  (cost=151.57..155.30 rows=1492 width=4)
   Sort Key: oid
   ->  Seq Scan on pg_proc  (cost=0.00..72.92 rows=1492 width=4)

Previous: Steps of a Query         [Table of Contents]         Next: EXPLAIN: widths