The MySQL TRUNCATE TABLE statement allows you to delete all data in a table.
Logically, the TRUNCATE TABLE statement is like a DELETE statement without a WHERE clause that deletes all rows from a table, or a sequence of DROP TABLE and CREATE TABLE statements.
#MySql #TruncateTable