full_outer_join
full_outer_join
joins data from a pair of tables - a left table and a right table - based upon one or more match columns. The match columns establish key identifiers in the source tables from which the tables are joined. Any data type can be used as keys.
The resultant table contains all rows from both tables that exist in the key identifier columns. Cells that exist in one table but not the other are filled with null values in the result.
This table operation is currently experimental. The API may change in the future.
Syntax
full_outer_join(
l_table: Table,
r_table: Table,
on: Union[str, Sequence[str]],
joins: Union[str, Sequence[str]] = None,
) -> Table
Parameters
Parameter | Type | Description |
---|---|---|
l_table | Table | The left table from which data is joined. |
r_table | Table | The right table from which data is joined. |
on | Union[str, Sequence[str]] | Columns from the left and right tables used to join on.
|
joins optional | Union[str, Sequence[str]] | The columns from the right table to add to the left table based on key. The default value is
|
Returns
A new table containing all rows from the left and right table. Rows that do not have matching criteria are included in the result as null cells. If there are multiple matches between a row from the left table and rows from the right table, all matching combinations will be included. If no match columns are specified, every combination of left and right table rows is included.
Examples
The following example creates two source tables and performs a full_outer_join
on them. It gives no joins
columns, so all columns from the right
table appear in the result
table.
from deephaven.experimental.outer_joins import full_outer_join
from deephaven import empty_table
left = empty_table(10).update(["I = ii % 5 + 1", "A = `left` + ii"])
right = empty_table(10).update(["I = ii % 3", "B = `right` + ii", "C = Math.sin(I)"])
result = full_outer_join(l_table=left, r_table=right, on=["I"])
- left
- right
- result
The following example creates two source tables and performs a full_outer_join
on them. It specifies C
as the only joins
column, so C
is the only column from the right
table that is added to result
.
from deephaven.experimental.outer_joins import full_outer_join
from deephaven import empty_table
left = empty_table(10).update(["I = ii % 5 + 1", "A = `left` + ii"])
right = empty_table(10).update(["I = ii % 3", "B = `right` + ii", "C = Math.sin(I)"])
result = full_outer_join(l_table=left, r_table=right, on=["I"], joins=["C"])
- left
- right
- result
The example below shows how to join tables on match columns with different names and rename appended columns when performing a full_outer_join
.
from deephaven.experimental.outer_joins import full_outer_join, left_outer_join
from deephaven import empty_table
left = empty_table(10).update(["X1 = ii % 5 + 1", "Y = Math.sin(X1)"])
right = empty_table(10).update(["X2 = ii % 3", "Y = Math.cos(X2)"])
result = full_outer_join(l_table=left, r_table=right, on=["X1 = X2"], joins=["Z = Y"])
- left
- right
- result