You can join together data based on the presence of one or more keys in your source dataset and the joined-in dataset or recipe. A join is a standard data operation that brings together multiple datasets based on one or more fields that they have in common to render a new dataset.
|
Using a Join transformation, you can join a recipe or dataset to any of the following objects:
You can join datasets through the following mechanisms:
Flow View:
join
in the Search panel.Choose dataset or recipe to join: select the recipe or dataset to which you want to join to Dataset A
Tip: The join you specify from Flow View is added as the last step to the recipe. If you selected a dataset to which to add the join, a recipe is created from the object, and the join is added as the first step of the new recipe. |
Join
. Joins are created through the Join window. This task is described below.
Steps:
Steps:
Mouse over the percentage match to get more detailed statistics.
NOTE: For formatted data types, such as Datetime, the formatting of the join keys must also match. For example, the values |
NOTE: |
For discussion purposes, the following datasets are referenced in the sections below.
CustId
column is shared between both datasets. This column is the join key, as there are no matches between the other colums.CustId
in one dataset do not appear in the other. Dataset A:
The first dataset to which you are joining in another is typically called the left dataset.
CustId | LastName | FirstName |
---|---|---|
c001 | Jones | Jack |
c002 | Kim | Ken |
c003 | Lee | Larry |
c004 | Miller | Mike |
c005 |
Dataset B:
The second dataset that you are joining in to the first is typically called the right dataset.
CustId | Region | CompanyName |
---|---|---|
c002 | East | ACME, Inc. |
c003 | West | Trifax, Inc. |
c005 | North | Example Co. |
c006 | South | Ace Industries |
There are multiple types of joins, which generate very different results. When you perform a join, you specify the type of join that is applied. The joined-together rows that appear in the output dataset are determined by the type of join that you selected and matching of values in the join key columns.
The following are the basic join types. The Example column references Dataset A (left) and Dataset B (right) from above.
Join Type | Description | Example | |
---|---|---|---|
inner join | If a join key value appears in the left dataset and the right dataset, the joined rows are included in the output dataset. | In the above output, rows c002 and c003 are included only. | |
left join | In a left join, all of the rows that appear in the left dataset appear in the output, even if there is no matching join key value in the right dataset. | In the above output, rows Rows | |
right join | In a right join, all of the rows that appear in the right dataset appear in the output, even if there is no matching join key value in the right dataset. | In the above output, rows Rows | |
outer join | An outer join combines the effects of a left and a right join. Each key value from both datasets is included in the output. If the key value is not present in one of the datasets, then null values are written into the columns from that dataset. | In the above output, rows Rows | |
cross join | A cross join matches every row in the source dataset with a row in the joined-in dataset, regardless of whether the join keys match.
| If Dataset A has 5 rows and Dataset B has 4 rows, the output has 20 rows. | |
self join | A self join matches the rows in the left dataset with a version of itself (dataset or recipe) on the right side. Some limitations apply. |
Steps:
In the output dataset, the column names are taken directly from the column names in the source dataset. Potential issues:
You can apply a prefix to the column names that are sourced from the left dataset, the right dataset, or both.
left_
.right_
. In the recipe step that produces the join, the columns that you select are mentioned specifically by name. Optionally, you can choose to automatically add in all columns to your output. For example, if your source data for an imported dataset is augmented with 10 new columns, when you re-run your join, those new columns can be automatically added to the output dataset.
Tip: You should consider using these options if the schema of your data sources is likely to change in the future. |
Steps:
You should review the columns that are previewed as in the data grid.
NOTE: If you modify the selected dataset to join, the joined dataset, the join keys, or the fields to include in the output, subsequent steps in your transform recipe can be broken by the change. After you modify the join, you should select the last step in your recipe to validate all steps in the recipe. |
You can apply the following modifications to how keys are matched. To modify a join key and condition, click the Pencil icon in the Join Keys & Conditions panel.
Optionally, you can configure the to ignore the following special characters, when matching values in join keys:
MyValue
matches with MYVALUE
. A fuzzy join applies a fuzzy matching algorithm to String values in the join key column to account for slight differences in how values are written.
NOTE: Fuzzy joins can only be applied to String data types. Other data types cannot be fuzzy-matched using the algorithm. |
This algorithm relies on the doublemetaphone function, which attempts to normalize text values based on how the string is spoken by an English speaker. For more information, see https://en.wikipedia.org/wiki/Metaphone#Double_Metaphone.
Values in the join key columns are matched across a range of values, instead of matching single value to single value. When range joins are enabled, you can set the Condition value between the two join key columns when specifying the join keys. For more information, see Configure Range Join.
For more complex join operations, you can add additional join keys to evaluate. Multi-key joins can be helpful for:
lastName
and firstName
.To add a second join key, click Add when modifying the join keys and conditions. Specify the keys in each dataset as needed.