Truncate is a DDL Command. When used in SQL Statement Deletes the data of the table permanently i.e It Cannot be rolledback Leaving only the structure behind.
Ex.truncate table tablename;
if the needs to be restored than use the delete command .
Ex.Delete *or columns from tablename;