Re: Inner Join - Explicit vs Implicit Join Performance

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: Inner Join - Explicit vs Implicit Join Performance
Дата
Msg-id CAFj8pRC6a7HA5x+fifHL1+rQOrmchiYaJ_YX3KRU7MuBKnM1TA@mail.gmail.com
обсуждение исходный текст
Ответ на Inner Join - Explicit vs Implicit Join Performance  ("Gnanakumar" <gnanam@zoniac.com>)
Список pgsql-performance
Hello

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

Regards

Pavel Stehule

2011/10/19 Gnanakumar <gnanam@zoniac.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@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-performance
>

В списке pgsql-performance по дате отправления:

Предыдущее
От: "Gnanakumar"
Дата:
Сообщение: Inner Join - Explicit vs Implicit Join Performance
Следующее
От: Craig James
Дата:
Сообщение: Re: How many Cluster database on a single server