Primary (LEFT JOIN)


A Join combines two datasets based on one or more common columns. To configure a join, you must specify the following:
Use Join Conditions to define how rows from two datasets are matched. Each condition pairs one column from the first dataset with a corresponding column from the second dataset.

The selected columns must contain related
values (such as IDs, names, or codes). Only exact matches (Equals
=) are supported.
Email matches Email
AddressZip Code matches Postal
CodeSelect X on a condition row to remove the condition.
Sample values show the most common values from the input data.
| Join Type | Results |
|---|---|
| Primary (LEFT JOIN) | All rows from the primary dataset, plus matches from the secondary dataset |
| Matching Only (INNER JOIN) | Only rows that match in both datasets |
| All Fields (FULL JOIN) | All rows from both datasets |





