The Truncate Table statement is used to delete all the rows of a table at once. The statement allows the user to delete all the records without specifying a condition using the where clause. Truncate deletes all the records but keeps the structure of the table intact. The output of this statement is equivalent to the delete statement without the where statement.