> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omni.co/llms.txt
> Use this file to discover all available pages before exploring further.

# join_from_view_as_label

> Controls the display name of the source view in the UI when using the join.

For example, you might want fields from `users` to appear as if they belong to the `buyers` table. In reality, the fields come from `users`, which is aliased in the model and generated in SQL as `user_facts`.

This can be used jointly with [`join_from_view_as`](/modeling/relationships/parameters/join-from-view-as) or used as a way to label a view within a topic.

## Syntax

```yaml theme={null}
join_from_view_as: <alias>
```

## Properties

<ParamField path="join_from_view_as_label" type="string">
  The display name for the source view in the UI.
</ParamField>

## Examples

```yaml title="Label the users view as Buyers in UI" highlight={3} theme={null}
- join_from_view: users
  join_from_view_as: buyers
  join_from_view_as_label: Buyers
  join_to_view: user_facts
  join_type: always_left
  on_sql: ${users.id} = ${user_facts.id}
  relationship_type: one_to_one
```
