From: Robert Haas Date: Mon, 13 Jun 2011 16:59:04 +0000 (-0400) Subject: Clarify that NATURAL without matching columns is like CROSS JOIN. X-Git-Tag: REL9_2_BETA1~1579 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b02ed66e2856abb1d5eef64747badd4fc78cef9;p=postgresql Clarify that NATURAL without matching columns is like CROSS JOIN. As suggested by Grzegorz Szpetkowski. --- diff --git a/doc/src/sgml/queries.sgml b/doc/src/sgml/queries.sgml index b3cf39a39b..7ca640e697 100644 --- a/doc/src/sgml/queries.sgml +++ b/doc/src/sgml/queries.sgml @@ -266,7 +266,9 @@ FROM table_reference , table_r 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. + only once in the output table. If there are no common + columns, NATURAL behaves like + CROSS JOIN.