The DROP TABLE statement is used to drop an existing table in a database.
DROP TABLE table_name;
Note**:** Be careful before dropping a table. Deleting a table will result in loss of complete information stored in the table!
The following SQL statement drops the existing table "Shippers":
DROP TABLE Shippers;
[[DDL (Data Definition Language)]]