Re: OUTER JOIN vs UNION ... faster?

From: Thomas Lockhart <lockhart(at)alumni(dot)caltech(dot)edu>
To: The Hermit Hacker <scrappy(at)hub(dot)org>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: OUTER JOIN vs UNION ... faster?
Date: 2001-04-24 16:31:20
Message-ID: 3AE5AA58.7FC41FD0@alumni.caltech.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> SELECT card_info.main_cat, category_details.sub_cat_flag,count(*)
> FROM send0,card_info,category_details
> WHERE send0.card_id=card_info.card_id
> AND category_details.mcategory='e-cards'
> AND card_info.main_cat=category_details.category
> AND send_date >= '2001/04/08'
> AND send_date <= '2001/05/14' group by 1,2
...
> UNION ALL
>
> SELECT card_info.main_cat, category_details.sub_cat_flag,count(*)
> FROM send6,card_info,category_details where send6.card_id=card_info.card_id
> AND category_details.mcategory='e-cards'
> AND card_info.main_cat=category_details.category
> AND send_date >= '2001/04/08'
> AND send_date <= '2001/05/14' group by 1,2
>
> UNION ALL
>
> SELECT card_info.main_cat, category_details.sub_cat_flag,count(*)
>
> ========================================================================
>
> *Really* dreading the thought of changing it to an OUTER JOIN, and am
> wondering if there would be a noticeable speed difference between going
> from the UNION above to an OUTER JOIN, or should they be about the same?

afaict the point of this query is to do joins on separate tables send0
through send6. An outer join won't help you here. The last clause pulls
everything out of the other tables involved in the previous joins, so
I'm *really* not sure what stats you are calculating. But they must be
useful to have done all this work ;)

But if you had constructed those tables (or are they views?) to avoid an
outer join somehow, you could rethink that. An outer join on the two
tables card_info and category_details should be much faster than six or
seven inner joins on those tables plus the union aggregation.

- Thomas

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message The Hermit Hacker 2001-04-24 17:55:38 Re: refusing connections based on load ...
Previous Message Peter Eisentraut 2001-04-24 15:08:15 Re: refusing connections based on load ...