MySQL DROP Table

MySQL DROP Table

MYSQL DROP table statement removes the complete data with structure.

Syntax:

  1. DROP TABLE  table_name;

Example:

  1. DROP TABLE  cus_tbl;

MySQL TRUNCATE Table vs DROP Table

You can also use DROP TABLE command to delete complete table but it will remove complete table data and structure both. You need to re-create the table again if you have to store some data. But in the case of TRUNCATE TABLE, it removes only table data not structure.