PostgreSQL - Performance Tuning
Consider this EXPLAIN output for a query joining two tables:
What does this plan imply about the join strategy?
Hash Join (cost=10.00..30.00 rows=500 width=150)
Hash Cond: (a.id = b.a_id)
-> Seq Scan on a
-> Hash
-> Seq Scan on bWhat does this plan imply about the join strategy?
