Skip to main content
This parameter is often used for multiple joins, such as when both buyers and sellers are populated via the users table.

Syntax

join_from_view_as: <alias>

Properties

join_from_view_as
string
The alias name for the source view. Both the original view name (join_from_view) and this alias can be used in the on_sql parameter.

Examples

Re-labels buyers as users in the join
- join_from_view: users
  join_from_view_as: buyers
  join_to_view: user_facts
  join_type: always_left
  on_sql: ${users.id} = ${user_facts.id}
  relationship_type: one_to_one