The `TRUNCATE` command is used to quickly remove all rows from a table, without logging individual row deletions. It is more efficient than using [[DELETE]] without a [[WHERE]] clause.
```SQL
TRUNCATE TABLE <table>
```
Truncate can be used as part of a [[truncate and load]] strategy.