Skip to main content
Join

Walk you through the basics of the join function

Updated over a week ago

What is the Join Function?

The join function supports to integration of data in two forms into one form. The join function supports the following three ways currently:

  • Left Join: corresponds to left join in SQL statement.

  • Right Join: corresponds to right join in SQL statement.

  • Inner Join: corresponds to inner join in SQL statement.

  • Full Join: corresponds to full join in SQL statement.

When to Use the Join Function?

When using the Join function, you need to set common fields in left form and right form. These fields you have set are join fields, which you can use to integrate data left and right.

For instance, one form is students' math scores and the other form is Students' English scores. The common field is student name. You can integrate these two forms' data into one form to view students' subject scores.


What Does It Look Like?

The output forms using different join ways are shown in the following:

How to Set up?

Step 1 Choosing Data Source Forms

The data source forms in Join are the Math Scores form and the English Scores form.

Step 2 Creating Data Streams

Go to App Management > Data Factory > New Data Stream.

Step 3 Selecting Data Sources

Rename the data stream, add 2 Input nodes, and select the Math Scores form and English Scores form as input sources.

Step 4 Adding Join Node

Add one Join data processing node in the design canvas of the data stream and connect the two input nodes with it respectively.

Step 5 Setting Nodes

You need to set connection methods and connection fields in the Join node.

1. Connection Methods

There are four ways to connect: Inner Join, Left Join, Right Join, and Full Join.

Data will be matched according to connection fields in Join. Common data with the same connection fields will be connected left and right according to connection methods. For instance, Inner Join takes the intersectional data of two forms. Only there both have connection fields in two forms, can the match go on.

a. How to distinguish left form and right form

Way 1: The form that is connected to the Join node first is the left form. The form that is connected to the Join node later is the right form.

Way 2: After connection, you can view the left form and right form in Node Configuration.

2. Integrating Connection Fields

If you choose Merge Connection Field, the connection fields will be merged into one field.

The following pictures show the difference between whether merging connection fields or not:

Merging Connection Field

Not Merging Connection Field

Note:

The orange fields in the pictures above represent connection fields.

2. Connection Field

Connection Field is the condition to integrate two forms into one form. If there are multi-connection conditions, you can add multi-connection fields. Only data whose connection fields fully match can be connected. You can preview the effect after connection in Data Preview.

Step 6 Renaming Nodes

In order to better mark the calculation rules of every data processing step in the data stream, you can rename the nodes in the data stream.

Step 7 Saving and Outputting

After Union, if you need to further calculate data, you can add other data processing nodes. After finishing the operation, you need to connect them with Output node and click Save.

Demonstration

You can preview the data after Joining the dashboard.

Different connection methods lead to different connection effects.

You can also enable Sync output table data into forms to make a copy data.


More to Know

1. Null values cannot match each other

If there are null values in the same connection fields of 2 forms when setting Join node, these null values cannot match each other.

2. Data Preview Limitation

You can at most preview 200 records of data in Data Preview. If you want to view complete data, you can further analyze and display it in dashboards.

3. Nesting Use of Join

One Join node supports to integrate two forms currently. If you have a demand on connecting many data forms, you can nest multiple Join nodes.

You can connect the A form with the B form through Join, then connect the C form with the Join node through another Join node, and so on.

4. Date Matching Accuracy

If the connection field belongs to Date&Time type, then you can choose the matching accuracy freely. The matching accuracy of Date&Time field is Days by default.


I have finished reading. 🏆

👉I can't wait to Try for myself.

👉I need more HELP in Discord Forum.

Did this answer your question?