+1 vote
in Sql by
what is the difference between TRUNCATE and DELETE statement?

1 Answer

0 votes
by

The difference between TRUNCATE and DELETE statement is that,

  1. TRUNCATE is used for unconditional removal of data records from Tables. Truncate Operations are not logged.
  2. DELETE is used for conditional removal of data records from Tables. These operations are logged.
...