Re: Query Approach and performance

From: Martijn van Oosterhout <kleptog(at)svana(dot)org>
To: Morgan Curley <mcurley(at)e4media(dot)com>
Cc: pgsql-general(at)postgresql(dot)org, pgsql-sql(at)postgresql(dot)org
Subject: Re: Query Approach and performance
Date: 2001-08-17 09:47:31
Message-ID: 20010817194731.A20613@svana.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-sql

On Fri, Aug 17, 2001 at 03:29:36AM -0400, Morgan Curley wrote:
> Hey everyone,
> On average, are multiple simple queries better performance-wise than joins?
> i.e.
> select A.col1 from table1 A
> select B.col2 from table2 B where B.col1 = A.col1
> etc
>
> vs
>
> select A.col1, B.col2 from table1 A, table2 B where B.col1 = A.col1
>
> Are joins better for small/large numbers of tables?
> Is there a diff?

Letting the database do joins is always better than doing them yourself.

> My approach to date has been to keep queries as simple as possible, and
> when I see a need for complicated joins, I create a view and then do simple
> queries against that.

I don't think it makes that much difference. Views are precompiled to some
extend.

> Does pg cache queries like Oracle does so that repeated queries don't need
> to go through the compile phase and run faster? Is this configurable?

Hmm, I've never noticed that query compilation actually took any noticable
time. No, postgres doesn't do that but I'm not convinced it would make a
difference.

HTH,
--
Martijn van Oosterhout <kleptog(at)svana(dot)org>
http://svana.org/kleptog/
> It would be nice if someone came up with a certification system that
> actually separated those who can barely regurgitate what they crammed over
> the last few weeks from those who command secret ninja networking powers.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Martijn van Oosterhout 2001-08-17 10:12:55 Re: slow update but have an index
Previous Message Ivan Babikov 2001-08-17 08:09:33 Re: Perfomance decreasing

Browse pgsql-sql by date

  From Date Subject
Next Message Jeff Eckermann 2001-08-17 14:18:10 Re: how to use record type
Previous Message Christophe Labouisse 2001-08-17 08:22:44 pg_ctl start hangs