From 5a8eec4e2a9776d7f19913f04ed3af152481c295 Mon Sep 17 00:00:00 2001 From: Sammion <33392372+Sammion@users.noreply.github.com> Date: Mon, 30 Aug 2021 17:16:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=82=E8=80=83=E5=AE=98=E6=96=B9=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E5=A2=9E=E5=8A=A0=E4=BA=86=E4=B8=A4=E4=B8=AA=E9=93=BE?= =?UTF-8?q?=E6=8E=A5=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://spark.apache.org/docs/3.0.0/sql-ref-syntax-qry-select-join.html --- ...234\211\345\223\252\345\207\240\347\247\215join.md" | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git "a/docs/spark\346\234\211\345\223\252\345\207\240\347\247\215join.md" "b/docs/spark\346\234\211\345\223\252\345\207\240\347\247\215join.md" index ef4d582..951449f 100644 --- "a/docs/spark\346\234\211\345\223\252\345\207\240\347\247\215join.md" +++ "b/docs/spark\346\234\211\345\223\252\345\207\240\347\247\215join.md" @@ -19,8 +19,14 @@ - **fullOuterJoin** fullOuterJoin会保留两个RDD中所有的key,因此所有的值列都有可能出现缺失的情况,所有的值列都会转为Some对象。 + +- **Semi Join** + + 半连接,只返回从与右侧匹配上的值。它也被称为左半连接。 + +- **Anti Join** - + 反连接从左表返回与右表不匹配的值。它也被称为左反连接 [参考文章]() - +https://spark.apache.org/docs/3.0.0/sql-ref-syntax-qry-select-join.html