The TRUNCATE statement

The TRUNCATE TABLE statement is used to delete the data inside a table, but not the table itself.

The TRUNCATE statement has the following basic syntax:

	-- deleting the data within a database table
	TRUNCATE TABLE table_name;