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;
TRUNCATE table
The SQL TRUNCATE statement deletes all rows of the specified table.
TRUNCATE
TRUNCATE T
is equivalent to
start transaction exclusive; delete from T; commit transaction;