MySQL Tutorial
DROP is used to delete a whole Table.
The MySQL DROP Table statement is used to drop an existing table in MySQL Database.
The MySQL DROP TABLE statement is used to remove a table definition and all the data, indexes, triggers, constraints and permission specifications for that table
The MySQL CREATE Table statement is used to create a new MySQL table.
DROP TABLE table_name;
DROP TABLE Students;
Once a table is dropped, you can check it in the list of tables with the following MySQL command:
DESCRIBE Students;