DROP TABLE
DROP TABLE [IF EXISTS] tbl_name [, tbl_name, ...]
This query completely deletes one or more tables. This is
a dangerous query, since the data cannot be retrieved once this
action is executed, so be very careful with it!This query will fail with an error if the table doesn’t exist
(unless IF EXISTS is specified) or if you don’t have
the required privileges.