From cb907dd6c60d7e8f2d94d49792e6ae55c4c55b03 Mon Sep 17 00:00:00 2001 From: Tatiana Kirillova Date: Fri, 22 Oct 2021 11:48:07 +0300 Subject: [PATCH] Update docs/en/sql-reference/statements/select/intersect.md Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com> --- docs/en/sql-reference/statements/select/intersect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sql-reference/statements/select/intersect.md b/docs/en/sql-reference/statements/select/intersect.md index 95af5eb50a0..58f8893a7a0 100644 --- a/docs/en/sql-reference/statements/select/intersect.md +++ b/docs/en/sql-reference/statements/select/intersect.md @@ -4,7 +4,7 @@ toc_title: INTERSECT # INTERSECT Clause {#intersect-clause} -The `INTERSECT` clause returns only those rows that result from first and second queries. The queries must match the number of columns, order, and type. The result of `INTERSECT` can contain duplicate rows. +The `INTERSECT` clause returns only those rows that result from both the first and the second queries. The queries must match the number of columns, order, and type. The result of `INTERSECT` can contain duplicate rows. Multiple `INTERSECT` statements execute left to right if brackets are not specified. The `INTERSECT` operator has a higher priority than the `UNION` and `EXCEPT` clause.