---
title: Manage tables
description: Manage tables in your InfluxDB cluster. A table is a collection of related data stored in table format. In previous versions of InfluxDB, tables were known as “measurements.”
url: https://docs.influxdata.com/influxdb3/clustered/admin/tables/
estimated_tokens: 1144
product: InfluxDB Clustered
version: clustered
---

# Manage tables

Manage tables in your InfluxDB cluster. A table is a collection of related data stored in table format.

In previous versions of InfluxDB and in the context of InfluxQL, tables are known as “measurements.”

## [Create a table](/influxdb3/clustered/admin/tables/create/)

Use the [`influxctl table create` command](/influxdb3/clustered/reference/cli/influxctl/table/create/) to create a new table in a specified database your InfluxDB cluster. Provide the database name and a table name.

```sh
influxctl table create <DATABASE_NAME> <TABLE_NAME>
```

## [List tables](/influxdb3/clustered/admin/tables/list/)

Use the [`influxctl table list` command](/influxdb3/clustered/reference/cli/influxctl/table/list/), the [`SHOW TABLES` SQL statement](/influxdb3/clustered/query-data/sql/explore-schema/#list-measurements-in-a-database), or the [`SHOW MEASUREMENTS` InfluxQL statement](/influxdb3/clustered/query-data/influxql/explore-schema/#list-measurements-in-a-database) to list tables in a database.

##### CLI

```sh
influxctl table list <DATABASE_NAME>
```

##### SQL

```sql
SHOW TABLES
```

##### InfluxQL

```sql
SHOW MEASUREMENTS
```

## [Rename a table](/influxdb3/clustered/admin/tables/rename/)

Use the [`influxctl table rename` command](/influxdb3/clustered/reference/cli/influxctl/table/rename/) to rename a table in your InfluxDBed cluster.

##### CLI

```sh
influxctl table rename <DATABASE_NAME> <CURRENT_TABLE_NAME> <NEW_TABLE_NAME>
```

## [Delete a table](/influxdb3/clustered/admin/tables/delete/)

Use the [`influxctl table delete` command](/influxdb3/clustered/reference/cli/influxctl/table/delete/) to delete a table from a database in your InfluxDBed cluster.

```sh
influxctl table delete <DATABASE_NAME> <TABLE_NAME>
```

## [Undelete a table](/influxdb3/clustered/admin/tables/undelete/)

Use the [`influxctl table undelete` command](/influxdb3/clustered/reference/cli/influxctl/table/undelete/) to restore a previously deleted table in your InfluxDBed cluster.

```bash
influxctl table undelete DATABASE_NAME TABLE_ID
```

[tables](/influxdb3/clustered/tags/tables/)
