TRUNCATE Command: Quick Table Data Deletion
Truncate is an operation in databases used to quickly delete all data in a table while retaining the structure. It is faster than the DELETE operation because it does not record each deleted row, but instead deletes all data in the table directly. Truncate does not trigger triggers, nor does it return the number of rows deleted. Truncate operation cannot be rolled back, once executed, data cannot be recovered, so caution is advised when using it. Truncate is generally used to empty the data in a table to refill it with new data.