Icon DROP TABLE Statement

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

Please see the Deleting Tables topic for more information on deleting tables.
Image