DROP TABLE in MySQL
DROP TABLE To delete all the data of a table along with its structure from the MySQL database, the MySQL DROP TABLE statement is used. Syntax: DROP TABLE table_name; Example: DROP TABLE items; Explanation: All the data of the “items” table along with its structure is removed from the database.