---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://ydb.tech/docs/en/yql/reference/syntax/drop-topic.md?version=v26.1
  - https://ydb.tech/docs/ru/yql/reference/syntax/drop-topic.md?version=v26.1
  - href: en/yql/reference/syntax/drop-topic.md
    type: text/markdown
    title: Markdown version
  - href: ../../../llms.txt
    type: text/markdown
    title: llms.txt
sourcePath: en/core/yql/reference/syntax/drop-topic.md
---
> **Documentation Index:** Fetch the complete configuration index at https://ydb.tech/docs/en/llms.txt

# DROP TOPIC

`DROP TOPIC` deletes the specified [topic](https://ydb.tech/docs/en/concepts/datamodel/topic.md?version=v26.1).

## Syntax

```yql
DROP TOPIC <topic_path>;
```

## Examples

The following command will delete the topic named `my_topic`:

```yql
DROP TOPIC my_topic;
```

## See also

* [CREATE TOPIC](https://ydb.tech/docs/en/yql/reference/syntax/create-topic.md?version=v26.1)
* [ALTER TOPIC](https://ydb.tech/docs/en/yql/reference/syntax/alter-topic.md?version=v26.1)
