EXPLAIN
Query
To see the query plan, use the explain command.
explain is a non-standard (but universal) part of SQL.
explain
select *
from routing
where from_member_id = 8
Output:
QUERY PLAN
----------------------------------------------------------
Seq Scan on routing (cost=0.00..13.20 rows=20 width=12)
Filter: (from_member_id = 8)
(2 rows)
|