MySQL Tutorial

A database system used with PHP.

MySQL Drop Table

MySQL DROP TABLE Statement

The DROP TABLE statement is used to drop an existing table in a database.

Syntax:

DROP TABLE table_name;

Note: Be careful before dropping a table. Deleting a table will result in loss of complete information stored in the table!

TRUNCATE TABLE

The TRUNCATE TABLE statement is used to delete the data inside a table, but not the table itself.

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics