DROP TABLE

To delete a table definition, use a DROP TABLE statement. Its form is:

DROP TABLE [IF EXISTS] table-name

where:

Note that dropping a table is a lengthy operation because all table data currently existing in the store is deleted as a part of the drop operation.