TRUNCATE
Speedy way to delete all records of a table.
truncate_statement : TRUNCATE [TABLE] table_name
table_name is the table which contains the records to be deleted.
TRUNCATE TABLE tbl1
Restrictions
Table should satisfy the following requirements:
- there are no on-delete triggers;
- there are no links.