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

# table attribute drop

With the `table attribute drop` command, you can drop a [custom attribute](https://ydb.tech/docs/en/concepts/datamodel/table.md#users-attr) from your table.

General format of the command:

```bash
ydb [global options...] table attribute 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.

Look up the description of the command to add a custom attribute:

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

## Parameters of the subcommand {#options}

| Name           | Description                                                                                           |
|----------------|-------------------------------------------------------------------------------------------------------|
| `--attributes` | The key of the custom attribute to be dropped. You can list multiple keys separated by a comma (`,`). |

## Examples {examples}

Drop the custom attributes with the keys `attr_key1` and `attr_key2` from the `my-table` table:

```bash
ydb table attribute drop --attributes attr_key1,attr_key2 my-table
```