DROP TABLE
This statement is used to drop a table. grammar:
DROP TABLE [IF EXISTS] [db_name.]table_name [FORCE];
illustrate:
Delete a table
DROP TABLE my_table;
If it exists, delete the table of the specified database
DROP TABLE IF EXISTS example_db.my_table;
DROP, TABLE