Re: Re-Reason of Slowness of Query

From: Adarsh Sharma <adarsh(dot)sharma(at)orkash(dot)com>
To: Vitalii Tymchyshyn <tivv00(at)gmail(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Re-Reason of Slowness of Query
Date: 2011-03-23 10:19:18
Message-ID: 4D89C926.8050009@orkash.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Vitalii Tymchyshyn wrote:
> 23.03.11 12:10, Adarsh Sharma ???????(??):
>> I just want to retrieve that id 's from page_content which do not
>> have any entry in clause2 table.
>>
> Then
> select distinct(p.crawled_page_id) from page_content p
> where NOT EXISTS (select 1 from clause2 c where c.source_id =
> p.crawled_page_id);
> is correct query.
>

I can't understand how* select 1 from clause2 c where c.source_id =
p.crawled_page_id works too, *i get my output .

What is the significance of 1 here.

Thanks , Adarsh
**
> Best regards, Vitalii Tymchyshyn.

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Vitalii Tymchyshyn 2011-03-23 10:37:58 Re: Re-Reason of Slowness of Query
Previous Message Vitalii Tymchyshyn 2011-03-23 10:12:08 Re: Re-Reason of Slowness of Query