Re: Is there any Faster workaround ?? - Mailing list pgsql-sql

From Jean-Luc Lachance
Subject Re: Is there any Faster workaround ??
Date
Msg-id 3CB356D8.48F8F5F4@nsd.ca
Whole thread Raw
In response to Is there any Faster workaround ??  (Rajesh Kumar Mallah <mallah@trade-india.com>)
List pgsql-sql
How about:

DELETE  from t_a where exist (select email from t_b where t_b.email =
t_a.email)

Rajesh Kumar Mallah wrote:
> 
> Hi folks,
> 
> We require to do below or similar quite often
> 
> DELETE  from t_a where email in (select email from t_b);
> 
> everyone knows "IN" is pain fully slow currently in pgsql
> is the any fster alternative to above query
> 
> regds
> Mallah.
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org


pgsql-sql by date:

Previous
From: David Stanaway
Date:
Subject: Re: Is there any Faster workaround ??
Next
From: Rajesh Kumar Mallah
Date:
Subject: Thank you ! Re: Is there any Faster workaround ??