Re: Which is better, correlated subqueries or joins? - Mailing list pgsql-performance

From Joshua D. Drake
Subject Re: Which is better, correlated subqueries or joins?
Date
Msg-id 428D0AF0.4020001@commandprompt.com
Whole thread Raw
In response to Which is better, correlated subqueries or joins?  (Jeffrey Tenny <jeffrey.tenny@comcast.net>)
List pgsql-performance
Hello,

It always depends on the dataset but you should try an explain analyze
on each query. It will tell you which one is more efficient for your
particular data.

Sincerely,

Joshua D. Drake


>
> Here's the join:
>
> # explain select child_pid from ssv_product_children, nv_products where
> nv_products.id = ssv_product_children.child_pid and
> ssv_product_children.pid = 1 and nv_products.isrel = 't';
>                                 QUERY PLAN
> --------------------------------------------------------------------------
>  Hash Join  (cost=1.22..2.47 rows=2 width=8)
>    Hash Cond: ("outer".child_pid = "inner".id)
>    ->  Seq Scan on ssv_product_children  (cost=0.00..1.18 rows=9 width=4)
>          Filter: (pid = 1)
>    ->  Hash  (cost=1.21..1.21 rows=4 width=4)
>          ->  Seq Scan on nv_products  (cost=0.00..1.21 rows=4 width=4)
>                Filter: (isrel = true)
> (7 rows)
>
>
> Here's the correlated subquery:
>
>
> # explain select child_pid from ssv_product_children where pid = 1 and
> child_pid = (select nv_products.id from nv_products where nv_products.id
> = child_pid and isrel = 't');
>                              QUERY PLAN
> ---------------------------------------------------------------------
>  Seq Scan on ssv_product_children  (cost=0.00..18.78 rows=1 width=4)
>    Filter: ((pid = 1) AND (child_pid = (subplan)))
>    SubPlan
>      ->  Seq Scan on nv_products  (cost=0.00..1.26 rows=1 width=4)
>            Filter: ((id = $0) AND (isrel = true))
> (5 rows)
>
>
> Thanks for any advice.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 9: the planner will ignore your desire to choose an index scan if your
>      joining column's datatypes do not match


--
Your PostgreSQL solutions company - Command Prompt, Inc. 1.800.492.2240
PostgreSQL Replication, Consulting, Custom Programming, 24x7 support
Managed Services, Shared and Dedicated Hosting
Co-Authors: plPHP, plPerlNG - http://www.commandprompt.com/

pgsql-performance by date:

Previous
From: Jeffrey Tenny
Date:
Subject: Which is better, correlated subqueries or joins?
Next
From: Steve Bergman
Date:
Subject: Optimizing for writes. Data integrity not critical