SQL Truncate

 
    TRUNCATE table
         

The SQL TRUNCATE statement deletes all rows of the specified table.

     
    TRUNCATE T
     

is equivalent to

     
	start transaction exclusive;
	delete from T;
	commit transaction;