---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.4
alternate:
  - https://ydb.tech/docs/en/dev/yql-tutorial/delete_table.md
  - https://ydb.tech/docs/ru/dev/yql-tutorial/delete_table.md
sourcePath: en/core/dev/yql-tutorial/delete_table.md
---
> **Documentation Index:** Fetch the complete configuration index at https://ydb.tech/docs/en/llms.txt

# Deleting a table

Delete the [created](https://ydb.tech/docs/en/dev/yql-tutorial/create_demo_tables.md) tables using the [DROP TABLE](https://ydb.tech/docs/en/yql/reference/syntax/drop_table.md) statement.

```yql
DROP TABLE episodes;
DROP TABLE seasons;
DROP TABLE series;
```

