Re: Inner Join - Explicit vs Implicit Join Performance

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: gnanam(at)zoniac(dot)com
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Inner Join - Explicit vs Implicit Join Performance
Date: 2011-10-19 11:14:24
Message-ID: CAFj8pRC6a7HA5x+fifHL1+rQOrmchiYaJ_YX3KRU7MuBKnM1TA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Hello

no, there is no difference - you can check it via EXPLAIN statement

Regards

Pavel Stehule

2011/10/19 Gnanakumar <gnanam(at)zoniac(dot)com>:
> Hi,
>
> In PostgreSQL, is there any performance difference between queries written
> using "explicit join notation" vs "implicit join notation" in complex
> queries?
>
> EXAMPLE: Simple "explicit join notation"
> SELECT *
> FROM   employee INNER JOIN department
> ON     employee.DepartmentID = department.DepartmentID;
>
> EXAMPLE: Simple "implicit join notation"
> SELECT *
> FROM   employee, department
> WHERE  employee.DepartmentID = department.DepartmentID;
>
> Regards,
> Gnanam
>
>
>
> --
> Sent via pgsql-performance mailing list (pgsql-performance(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-performance
>

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Craig James 2011-10-19 13:54:30 Re: How many Cluster database on a single server
Previous Message Gnanakumar 2011-10-19 10:39:44 Inner Join - Explicit vs Implicit Join Performance