---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://ydb.tech/docs/en/yql/reference/syntax/drop-topic.md?version=main
  - https://ydb.tech/docs/ru/yql/reference/syntax/drop-topic.md?version=main
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=main).

## 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=main)
* [ALTER TOPIC](https://ydb.tech/docs/en/yql/reference/syntax/alter-topic.md?version=main)
