> ## 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.

# table_name

> Specifies the database table name underlying the view.

<Note>
  If not defined explicitly, Omni will infer `table_name: {view_name}`.
</Note>

## Syntax

```yaml theme={null}
table_name: <table_name>
```

## Properties

<ParamField path="table_name" type="string">
  The name of the database table underlying the view. If not specified, defaults to the view file name.
</ParamField>

## Examples

```yaml title="orders table in ecomm schema" theme={null}
schema: ecomm
table_name: orders
```
