-- Basic plan
EXPLAIN SELECT * FROM users WHERE age > 25;
-- With actual timings
EXPLAIN ANALYZE SELECT * FROM users WHERE age > 25;
-- Look for:
-- Seq Scan (no index) vs Index Scan (uses index)
-- Rows Removed by Filter (high = needs index)
-- Total costThe goal: low cost, Index Scans over Seq Scans.