MySQL : Truncate Table
Truncate Table Statement in MySQL Database The TRUNCATE statement in MySQL database is used to remove all rows (data) from a table quickly and efficiently, without any individual row deletions. This command is useful when we want to reset a table to its empty state . TRUNCATE operates at a higher level, essentially deallocating the … Read more