TRUNCATE

This lesson discusses how to delete all the rows of a table using the TRUNCATE clause.

We'll cover the following...

Truncate

In the previous lesson, we learned how to delete data using the DELETE statement. However, if we intend to delete all the rows from a table then a faster route is to use the TRUNCATE statement. Generally, we don’t want to ...