---
title: influxctl table rename
description: The influxctl table rename command renames a table in an InfluxDB Cloud Dedicated cluster.
url: https://docs.influxdata.com/influxdb3/cloud-dedicated/reference/cli/influxctl/table/rename/
estimated_tokens: 565
product: InfluxDB Cloud Dedicated
version: cloud-dedicated
---

# influxctl table rename

-   influxctl 2.10.3+

The `influxctl table rename` command renames a table in the specified database in an InfluxDB Cloud Dedicated cluster.

## Usage

```bash
influxctl table rename [flags] <DATABASE_NAME> <CURRENT_TABLE_NAME> <NEW_TABLE_NAME>
```

## Arguments

| Argument | Description |
| --- | --- |
| DATABASE_NAME | Name of the database the table is in |
| CURRENT_TABLE_NAME | Current name of the table |
| NEW_TABLE_NAME | New name for the table |

## Flags

| Flag |  | Description |
| --- | --- | --- |
|  | --format | Output format (table (default) or json) |
| -h | --help | Output command help |

*Also see [`influxctl` global flags](/influxdb3/cloud-dedicated/reference/cli/influxctl/#global-flags).*

## Examples

```bash
# Rename the "example-tb" table to "example_tb"
influxctl table rename mydb example-tb example_tb
```
