---
title: influxctl table delete
description: The influxctl table delete command deletes a specified table from a database.
url: https://docs.influxdata.com/influxdb3/clustered/reference/cli/influxctl/table/delete/
estimated_tokens: 684
product: InfluxDB Clustered
version: clustered
---

# influxctl table delete

-   influxctl 2.10.2+

The `influxctl table delete` command deletes a specified table from a database.

## Usage

```sh
influxctl table delete [flags] <DATABASE_NAME> <TABLE_NAME>
```

## Arguments

| Argument | Description |
| --- | --- |
| DATABASE_NAME | Name of the database |
| TABLE_NAME | Name of table to delete |

## Flags

| Flag |  | Description |
| --- | --- | --- |
| -h | --help | Output command help |

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

## Examples

```bash
influxctl table delete DATABASE_NAME TABLE_NAME
```

Replace the following:

-   `DATABASE_NAME`: the name of the database to delete the table from
-   `TABLE_NAME`: the name of the table to delete

#### Related

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