Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions docs/src/main/sphinx/sql/select.rst
Original file line number Diff line number Diff line change
Expand Up @@ -702,18 +702,17 @@ to combine the results of more than one select statement into a single result se

.. code-block:: text

query INTERSECT [DISTINCT] query
query INTERSECT [ALL | DISTINCT] query

.. code-block:: text

query EXCEPT [DISTINCT] query
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's an extra space after ALL

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

query EXCEPT [ALL | DISTINCT] query

The argument ``ALL`` or ``DISTINCT`` controls which rows are included in
the final result set. If the argument ``ALL`` is specified all rows are
included even if the rows are identical. If the argument ``DISTINCT``
is specified only unique rows are included in the combined result set.
If neither is specified, the behavior defaults to ``DISTINCT``. The ``ALL``
argument is not supported for ``INTERSECT`` or ``EXCEPT``.
If neither is specified, the behavior defaults to ``DISTINCT``.


Multiple set operations are processed left to right, unless the order is explicitly
Expand Down