Introduction
The SQL DROP TABLE statement is used to delete a table.
Syntax
DROP TABLE [IF EXISTS] table_reference
Use the DROP TABLE statement to delete an existing table. The statement below drops a table:
DROP TABLE Employee