We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dc96f3 commit 628dc15Copy full SHA for 628dc15
docs/source/user-guide/common-operations/joins.rst
@@ -137,3 +137,11 @@ DataFusion uses the ``__right_<col>`` naming convention for conflicting columns
137
138
left.join(right, on="id", deduplicate=True)
139
140
+After deduplication, you can select the join column (which comes from the left DataFrame) and other columns as usual:
141
+
142
+.. ipython:: python
143
144
+ # Select the id column and other columns from both DataFrames
145
+ joined_dedup = left.join(right, on="id", deduplicate=True)
146
+ joined_dedup.select("id", "customer", "name")
147
0 commit comments