From: Bruce Momjian Date: Tue, 23 Oct 2001 16:42:36 +0000 (+0000) Subject: Move ALL out of UNION|INTERSECT|EXCEPT syntax. X-Git-Tag: REL7_2_BETA1~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e76c9aaa5916270a955f9d5d52b28fd86bb42e5;p=postgresql Move ALL out of UNION|INTERSECT|EXCEPT syntax. Alvaro Herrera --- diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml index 93a491a328..7765af05d1 100644 --- a/doc/src/sgml/ref/select.sgml +++ b/doc/src/sgml/ref/select.sgml @@ -1,5 +1,5 @@ @@ -26,7 +26,7 @@ SELECT [ ALL | DISTINCT [ ON ( expressioncondition ] [ GROUP BY expression [, ...] ] [ HAVING condition [, ...] ] - [ { UNION | INTERSECT | EXCEPT [ ALL ] } select ] + [ { UNION | INTERSECT | EXCEPT } [ ALL ] select ] [ ORDER BY expression [ ASC | DESC | USING operator ] [, ...] ] [ FOR UPDATE [ OF tablename [, ...] ] ] [ LIMIT { count | ALL } ] diff --git a/doc/src/sgml/ref/select_into.sgml b/doc/src/sgml/ref/select_into.sgml index b9f1a3fe06..99c44024c8 100644 --- a/doc/src/sgml/ref/select_into.sgml +++ b/doc/src/sgml/ref/select_into.sgml @@ -1,5 +1,5 @@ @@ -29,7 +29,7 @@ SELECT [ ALL | DISTINCT [ ON ( expressioncondition ] [ GROUP BY expression [, ...] ] [ HAVING condition [, ...] ] - [ { UNION | INTERSECT | EXCEPT [ ALL ] } select ] + [ { UNION | INTERSECT | EXCEPT } [ ALL ] select ] [ ORDER BY expression [ ASC | DESC | USING operator ] [, ...] ] [ FOR UPDATE [ OF tablename [, ...] ] ] [ LIMIT [ start , ] { count | ALL } ] diff --git a/doc/src/sgml/sql.sgml b/doc/src/sgml/sql.sgml index 8ea411f36f..df2546fa08 100644 --- a/doc/src/sgml/sql.sgml +++ b/doc/src/sgml/sql.sgml @@ -1,5 +1,5 @@ @@ -861,7 +861,7 @@ SELECT [ ALL | DISTINCT [ ON ( expressioncondition ] [ GROUP BY expression [, ...] ] [ HAVING condition [, ...] ] - [ { UNION | INTERSECT | EXCEPT [ ALL ] } select ] + [ { UNION | INTERSECT | EXCEPT } [ ALL ] select ] [ ORDER BY expression [ ASC | DESC | USING operator ] [, ...] ] [ FOR UPDATE [ OF class_name [, ...] ] ] [ LIMIT { count | ALL } ]