DROP TABLE
syntax
DROP TABLE [IF EXISTS] tbl_name [, tbl_name,...]
DROP TABLE
removes one or more tables. All table data and the table definition are removed, so be careful with this command!
In MySQL 3.22 or later, you can use the keywords IF EXISTS
to prevent an error from occurring for tables that don't exist.