7.2. Table Expressions suggestion about NATURAL JOIN

Поиск
Список
Период
Сортировка
От Grzegorz Szpetkowski
Тема 7.2. Table Expressions suggestion about NATURAL JOIN
Дата
Msg-id BANLkTimtKpbzfd9mQM_R5=0VnTfc=gF0qQ@mail.gmail.com
обсуждение исходный текст
Ответы Re: 7.2. Table Expressions suggestion about NATURAL JOIN  (Grzegorz Szpetkowski <gszpetkowski@gmail.com>)
Re: 7.2. Table Expressions suggestion about NATURAL JOIN  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-docs
http://www.postgresql.org/docs/9.0/static/queries-table-expressions.html
http://www.postgresql.org/docs/9.0/static/sql-select.html

Respectively:

"Finally, NATURAL is a shorthand form of USING: it forms a USING list
consisting of all column names that appear in both input tables. As
with USING, these columns appear only once in the output table."

and

"NATURAL is shorthand for a USING list that mentions all columns in
the two tables that have the same names."

To make that comprehensive you can add something like: "Note that if
there is no any "shared" column between tables, then NATURAL JOIN acts
like ON TRUE (that is, tables are cross-joined)", because it's not
obvious.

thanks & regards,
greg szpetkowski

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

Предыдущее
От: Grzegorz Szpetkowski
Дата:
Сообщение: 7.2. Table Expressions FULL join is only supported with merge-joinable join conditions
Следующее
От: Grzegorz Szpetkowski
Дата:
Сообщение: Re: 7.2. Table Expressions suggestion about NATURAL JOIN