Drop table in MYSQL by R4R Team

What is DROP table?
Basically, by drop table command we delete the record as well the structure of the table from the database.

Syntax:
DROP TABLE table_name;

Difference between DROP, TRUNCATE command:
-Truncate is used to delete all record of the table but not the table.
-but the drop command delete all record as well as the structure of the table.
Leave a Comment: