Updated on 2025-07-24 GMT+08:00

Deleting a Table

This section describes the basic syntax and usage of the SQL statements for deleting a table in a Doris cluster.

Basic Syntax

DROP TABLE [IF EXISTS] [db_name.]table_name [FORCE];

Usage Example

Delete the my_table table.

DROP TABLE IF EXISTS example_db.my_table;