left join where not null vs. inner join - Mailing list pgsql-sql

From Emi Lu
Subject left join where not null vs. inner join
Date
Msg-id 4A17106F.7040302@encs.concordia.ca
Whole thread Raw
Responses Re: left join where not null vs. inner join  (Erik Jones <ejones@engineyard.com>)
List pgsql-sql
Two tables, each contains more than hundreds of thousands records. Is 
there any efficiency differences between (1) and (2)?

(1) T1 inner join T2 using (c1, c2)


(2) T1 left join T2 using (c1, c2) where c2 is not null


Thanks,
--
Lu Ying


pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: help with pg_hba.conf
Next
From: Erik Jones
Date:
Subject: Re: left join where not null vs. inner join