Re: Re-Reason of Slowness of Query - Mailing list pgsql-performance

From Adarsh Sharma
Subject Re: Re-Reason of Slowness of Query
Date
Msg-id 4D89C704.5080603@orkash.com
Whole thread Raw
In response to Re: Re-Reason of Slowness of Query  (Vitalii Tymchyshyn <tivv00@gmail.com>)
Responses Re: Re-Reason of Slowness of Query
Re: Re-Reason of Slowness of Query
List pgsql-performance
I just want to retrieve that id 's from page_content which do not have any entry in clause2 table.

Thanks , Adarsh

Vitalii Tymchyshyn wrote:
23.03.11 11:17, Adarsh Sharma написав(ла):

I think it is very much faster but I don't understand the query :

explain select distinct(b) from t1,t2 where t1.b >t2.d union all  select distinct(b) from t1,t2 where  t1.b <t2.d;

I don't understand it too. What are you trying to get? Is it
select distinct(b) from t1 where  b > (select min(d) from t2) or b  < (select max(d) from t2)
?

Can you explain in words, not SQL, what do you expect do retrieve?

Best regards, Vitalii Tymchyshyn

pgsql-performance by date:

Previous
From: Vitalii Tymchyshyn
Date:
Subject: Re: Re-Reason of Slowness of Query
Next
From: Vitalii Tymchyshyn
Date:
Subject: Re: Re-Reason of Slowness of Query