MySQL DROP TABLE Statement
The DROP TABLE statement in MySQL is a Data Definition Language (DDL) command that permanently removes an existing table from a MySQL database. When you execute the DROP TABLE statement, MySQL performs the following operations: Deletes the table structure permanently.…

