Join Tool

The Join tool combines two inputs based on a common field(s) between the two tables. You can also Join two data streams based on record position.

The three outputs resulting from the join are as follows:

L Output Contains records from the L input that did NOT join to records from the R input.
J Output Contains records that joined from the L input to those records in the R input.
R Output Contains records from the R input that did NOT join to records from the L input.

If another type of join is desired, see below.

Why you would use this tool

You may want to use a Join tool to blend two data sources, point of sale and loyalty card data that share a common Store ID.

How to use this tool

  1. Drag a Join tool from the Tool Palette onto the workflow canvas.

  2. Connect the two inputs to blend into the Join tool.

  3. With the Join tool selected, configure the tool.

  4. Select how to perform the Join. The two options are by record position, or by specific field.

  5. Use the table to modify the incoming data stream. Each row in the table represents a column in the data.

Data Joins and Data Types

The Join tool restricts what field types can be joined together. The following error messages may result:

Doing different types of Joins

See the table below for using the Join tool to execute different types of joins.

Inner Join:Contains records that joined from the L input to those records in the R input.

The J output of the Join tool contains the result of an Inner Join.

Left Unjoin: Contains records from the L input that did NOT join to records from the R input.

The L output of the Join tool contains the result of a Left Unjoin.

Right Unjoin: Contains records from the R input that did NOT join to records from the L input.

The R output of the Join tool contains the result of a Right Unjoin.

Left Outer Join: All records from the L input including the records that joined with the R input.

To do a Left Outer Join, connect the J and L outputs of the Join tool to the Union tool.

Connect the J output first to establish the combined table schema.

Right Outer Join: All records from the R input including the records that joined with the L input.

To do a Right Outer Join, connect the J and R outputs of the Join tool to the Union tool.

Connect the J output first to establish the combined table schema.

Full Outer Join: All of the records from both L and R inputs.

To do a Full Outer Join, connect the J, L, and R outputs of the Join tool to the Union tool.

Connect the J output first to establish the combined table schema.