Creating joins between tables

You can create join clauses between the tables you include in the view. The join links the tables based on a pair of equivalent columns - one from each table.

Join example

In the following example, the Products table and Customer Flows table are selected for the view. A join is created from the Name in Products to the Product Name in Customer Flows. The Name and Value columns are displayed from the Products table, and Flow Units (called “Customer Flow Units”) is displayed from the Customer Flows table.

The Products table includes products that are not demanded by the customers, such as raw materials and packing products.

In the first case, the join is created with all records from Products and only matching records from Customer Flows. As a result, there is one row for each record in the Products table:

In the second case, the join is created with only matching records from Products and all records from Customer Flows. Now there are rows only for the two finished goods products that are in Customer Flows:

Last modified: Wednesday May 15, 2024

Is this useful?