Re: Query tuning

From: "Scott Marlowe" <scott(dot)marlowe(at)gmail(dot)com>
To: kapil(dot)munish(at)wipro(dot)com
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Query tuning
Date: 2008-05-16 15:21:38
Message-ID: dcc563d10805160821p22e01297ia85bf6317c4a6c2b@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Thu, May 15, 2008 at 12:00 AM, <kapil(dot)munish(at)wipro(dot)com> wrote:
> Hi,
>
> select count(distinct(j.JOBID)) as jobCount
> from JOB_TYPE_FIRST a, JOB_TYPE_SECOND b, JOB_ALLOCATION_WORKLIST j
> where (( a.JOBID = j.JOBID)
> and (a.BOOK_ID = :bookId))
> or ((b.JOBID = j.JOBID)
> and (b.BOOK_ID = :bookId));

Have you tried joining a with j and b with j separately, and then
doing a union on those two sets?

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Simon Riggs 2008-05-16 16:13:09 Re: Query tuning
Previous Message A. Kretschmer 2008-05-16 14:27:09 Re: Find all instances of a column in the entire database.