Define relationships in data models (Beta)

🚩

This documentation describes a private beta feature and is under construction. This documentation should not be considered part of our published documentation until this notice, and the corresponding Beta flag on the feature in Sigma, is removed. As with any beta feature, the feature described below is subject to quick, iterative changes. The latest experience in the Sigma service may differ from the contents of this document. Beta features are subject to the disclaimer on Beta features.

If you are interested in joining a limited test group and enabling this feature in your Sigma organization, contact Support or reach out to your Account Executive.

You can add relationships between tables in a data model to enable business users to work with related data without performing ad hoc joins.

A relationship defines the join logic for Sigma to use to join the tables. After you define a relationship between two tables, the columns from both tables are available to the source table for analysis and exploration as needed. When a user analyzes the source table in a workbook and adds a related column, Sigma performs the join.

Relationships can help reduce unnecessary joins, which can improve performance and reduce cost. With a relationship, a join is only performed when a related column is added to a workbook element. If you use a join instead, the join is performed in the underlying SQL every time.

Sigma does not automatically create relationships between tables from a connected data source. Even if the tables have primary and foreign keys defined, you must create relationships between the tables in a data model to make the related columns available to downstream elements.

💡

Relationships between elements are directional. Consider how your data is related when defining a relationship.

Guidance for modeling relationships

Relationships between data model tables only support many-to-one or one-to-one joins. When you define a relationship between tables in a data model, use the most-granular data table as the source element and add a relationship to one or more less-granular tables as target elements. Each row in the source table must have only one possible result in the target table, otherwise unintentional fanouts or wrong results can be introduced to workbooks that use the related column.

For example, if you use a star schema, use your fact table (for example, EVENTS) as the source element, and add a relationship with each dimension table (for example, USER, or EVENT_TYPE) as the target element.

For more details, see Relationships: what they are and how to use them in Sigma Community.

Add a relationship between two data model tables

Define a relationship to make additional columns available from a data model element.

📘

You can only define relationships between elements on the same connection. All related elements must be in the same data model.

  1. Open the data model for editing.

  2. Add elements to the data model.

  3. Select Data model ERD () to open the entity relationship diagram (ERD) view.

  4. In the Data model ERD view, locate the source element for the relationship on the canvas, then select + (Add) > Add relationship….
    Entity relationship diagram with one Trip element and one Stations element. An element overview provides details about relationships and metrics on the element, and a details pane includes information about the connection, materialization status, and downstream elements.

  5. In the Add relationship modal, select a target element.

    Relationship modal, showing target element with join keys of Start station Id from the Trip table and Id from the Stations table, a name of Start Station details, and an empty description.

  6. For the source element and the target element, select a column to use as the join key in the relationship.

  7. [optional] Select + Add another mapping to add additional column mappings.

  8. [optional] Name the relationship. By default, the relationship name uses the target element title.

  9. [optional] Add a description for the relationship.

  10. Click Save.

To make the relationship available to downstream users, publish the data model.

For details about using related columns in a workbook, see Use related columns in a workbook (Beta).

Example relationship

For example, if you want to make the BIKES data in the Sigma Sample Database easier to analyze in a workbook, you can model and define a relationship as follows:

  1. In your data model, using the Sigma Sample Database EXAMPLES.BIKES schema as a data source, add the TRIP table and the STATIONS table as two data elements.

    The TRIP table provides details about bike trips taken on rental bikes. There is one row for every bike trip, so there are many total rows for each station.
    The STATIONS table provides details about the location of each bike docking station. There is one row for each station.

    Data model entity relationship diagram, showing a TRIP table and a STATIONS table from the Sigma Sample Database

  2. To create a relationship between the two tables, start from the TRIP table, using the STATIONS table as the target element. Creating a relationship in this direction defines the logic for a many-to-one join:

    Data model relationship modal, showing a relationship definition that uses the stations table as the target element, with a column mapping of Start Station Id in the trip table to the Id column in the stations table.

  3. Then, after publishing the data model, business analysts can work with the TRIP table from the data model, easily adding related columns from the STATIONS table. Sigma performs a join based on the logic defined in the relationship, and the join is only executed when the related columns are added to the workbook:

    Related columns available in a workbook from the Stations table, after the Trip table from the data model is added as a data source.

Review existing relationships for data model elements

You can use the entity relationship diagram (ERD) for your data model to review the relationships between data model elements.

  1. Identify directional relationships with the arrows connecting elements.
  2. Identify which relationships are set up for which columns of the reusable elements in the ERD overview panel.

Data model entity relationship diagram for trip and stations elements, with an arrow from trips to stations to indicate a relationship, and the overview panel open to show more details about each element.