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

# Create a table in a Trino catalog

> Create a table in a Trino catalog to define structured data for querying and analysis.

You can create a table in a Trino catalog without writing a SQL command. This allows you to define columns, data types,
and structure your data for querying and analysis.

## Create a table in a Trino catalog

<Tabs>
  <Tab title="Web portal" icon="browser">
    Perform these steps to create a table in a Trino catalog.

    1. Log in to NexusOne.
    2. On the top navigation bar, hover your mouse over **Catalog & Models** and then select **Catalogs**.
    3. Click a catalog to view its schemas.
    4. Click a schema to view its table.
    5. At the top right corner, click **Add Table**.
    6. Enter a table name.
    7. Enter a column name.
    8. Select a data type.
    9. Tick **Null** if the column can contain empty values.
    10. For subsequent columns, click the plus `+` icon to add new columns and repeat step 5-8.
        To delete a column, click the minus `-` icon.
    11. Click **Create**.
  </Tab>

  <Tab title="REST API" icon="code">
    Use the following API endpoint to:

    * [Create table](/api-reference/endpoints/metastore/create-table).

    To get the catalog and schema names, use the following API endpoint to:

    * [Get catalogs](/api-reference/endpoints/metastore/get-catalogs).
    * [Get catalog schema](/api-reference/endpoints/metastore/get-catalog-schemas).
  </Tab>
</Tabs>

## Additional resources

For an overview of the Govern feature, refer to [Govern Overview](/documentation/govern/overview).
