Reference Guide > TDV SQL Script > SQL Script Statement Reference > DROP TABLE
 
DROP TABLE
Removes a table definition and all the data, indexes, triggers, constraints and permission specifications for that table.
Syntax
DROP TABLE [IF EXISTS] table_name;
Remarks
DROP TABLE throws an error if the table does not exist, or if other database objects depend on it.
DROP TABLE IF EXISTS does not throw an error if the table does not exist. It throws an error if other database objects depend on the table.