In Oracle, the truncate statement is used to remove all the records of a table. It works same as the delete statement but without using where clause.
Truncate table table_name;
Table before truncate
Table truncated
Table after truncate