---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://ydb.tech/docs/en/dev/yql-tutorial/delete_table.md?version=main
  - https://ydb.tech/docs/ru/dev/yql-tutorial/delete_table.md?version=main
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?version=main) tables using the [DROP TABLE](https://ydb.tech/docs/en/yql/reference/syntax/drop_table.md?version=main) statement.

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

