Spark SQL Joins - Left Outer Join
2022-05-31 sparkspark-sql
This diagram shows Left Join type in Spark SQL. It returns all values from the left relation and the matched values from the right relation, or appends NULL if there is no match. It is also called left outer join.