---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://ydb.tech/docs/en/reference/ydb-cli/table-drop.md
  - https://ydb.tech/docs/ru/reference/ydb-cli/table-drop.md
sourcePath: en/core/reference/ydb-cli/table-drop.md
---
> **Documentation Index:** Fetch the complete configuration index at https://ydb.tech/docs/en/llms.txt

# Deleting a table

Using the `table drop` subcommand, you can delete a specified table.

General format of the command:

```bash
ydb [global options...] table drop [options...] <table path>
```

* `global options`: [Global parameters](https://ydb.tech/docs/en/reference/ydb-cli/commands/global-options.md).
* `options`: [Parameters of the subcommand](#options).
* `table path`: The table path.

To view a description of the table delete command:

```bash
ydb table drop --help
```

## Parameters of the subcommand {#options}

| Name        | Description                                                            |
|-------------|------------------------------------------------------------------------|
| `--timeout` | The time within which the operation should be completed on the server. |

## Examples {examples}

<!-- source: en/_includes/ydb-cli-profile.md -->
{% note info %}

The examples use the `quickstart` profile. To learn more, see [Creating a profile to connect to a test database](https://ydb.tech/docs/en/reference/ydb-cli/profile/create.md#quickstart).

{% endnote %}
<!-- endsource: en/_includes/ydb-cli-profile.md -->

To delete the table `series`:

```bash
ydb -p quickstart table drop series
```
