From: | Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com> |
---|---|
To: | Abdul Wahab Dahalan <wahab(at)mimos(dot)my> |
Cc: | Christoph Haller <ch(at)rodos(dot)fzk(dot)de>, <pgsql-sql(at)postgresql(dot)org> |
Subject: | Re: How to speeed up the query performance |
Date: | 2003-08-14 03:12:24 |
Message-ID: | 20030813201031.D67777-100000@megazone.bigpanda.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On Thu, 14 Aug 2003, Abdul Wahab Dahalan wrote:
> Hai Chris!
> Thanks for the solution but seem it doesnt work.
> (0 rows) returned when I used NOT EXITS but (4 rows) returned
> when NOT IN is used...................
Maybe you need a set of parenthesis around the old conditions
because of the or.
> >Try:
> >select
> >ts.transportid,ts.transporttype,ts.transportcapacity,ts.transportstatus,ts.routecoverage,ts.transportregnumber
> >
> >from transportsetup ts
> >where ts.bizid = 'B126'
> >and ts.deletestatus = 0
> >and NOT EXISTS ( select t.transportid
> > from transportsetup t,servicedetail s,logisticservice l
> > where ts.transportid = t.transportid
> > and t.bizid=l.bizid
Replace the above with:
and (t.bizid=l.bizid
> > and l.serviceid=s.serviceid
> > and t.transportid=s.transportid
> > and t.bizid = 'B126'
> > and l.status='Pending'
> > or t.bizid=l.bizid
> > and l.serviceid=s.serviceid
> > and t.transportid=s.transportid
> > and t.bizid = 'B126' and l.status='Reserved' )
Add:
)
> >order by ts.transporttype;
From | Date | Subject | |
---|---|---|---|
Next Message | Jesse Scott | 2003-08-14 03:20:59 | Timezone troubles |
Previous Message | Abdul Wahab Dahalan | 2003-08-14 02:51:44 | Re: How to speeed up the query performance |