From a58c35f2b43ea10b5369aac0c564848b45ece757 Mon Sep 17 00:00:00 2001 From: Yarik Briukhovetskyi <114298166+yariks5s@users.noreply.github.com> Date: Tue, 19 Dec 2023 21:30:35 +0100 Subject: [PATCH] fix docs --- docs/en/sql-reference/statements/select/join.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sql-reference/statements/select/join.md b/docs/en/sql-reference/statements/select/join.md index 37fe1ef45e4..97090a7a699 100644 --- a/docs/en/sql-reference/statements/select/join.md +++ b/docs/en/sql-reference/statements/select/join.md @@ -272,7 +272,7 @@ For example, consider the following tables: ## PASTE JOIN Usage -The result of `PASTE JOIN` is a table that contains all columns from left subquery followed by all columns from the right subqiery. +The result of `PASTE JOIN` is a table that contains all columns from left subquery followed by all columns from the right subquery. The rows are matched based on their positions in the original tables (the order of rows should be defined). If the subqueries return a different number of rows, extra rows will be cut.