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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.omni.co/feedback

```json
{
  "path": "/modeling/views/parameters/table-name",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

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