snowflake.snowpark.DataFrame.natural_join¶
- DataFrame.natural_join(right: DataFrame, how: str | None = None, **kwargs) DataFrame[source]¶
Performs a natural join of the specified type (
how) with the current DataFrame and another DataFrame (right).- Parameters:
right – The other
DataFrameto join.how –
We support the following join types:
Inner join: “inner” (the default value)
Left outer join: “left”, “leftouter”
Right outer join: “right”, “rightouter”
Full outer join: “full”, “outer”, “fullouter”
You can also use
join_typekeyword to specify this condition. Note that to avoid breaking changes, currently whenjoin_typeis specified, it overrideshow.
- Examples::