Computer Science, asked by pradhansaditya4377, 8 months ago

In databases, what is the difference between a delete statement and a truncate statement?

Answers

Answered by khushifamily891
0

Answer:DROP and TRUNCATE are DDL commands, whereas DELETE is a DML command. Therefore DELETE operations can be rolled back (undone), while DROP and TRUNCATE operations cannot be rolled back. TRUNCATE can be rolled back if wrapped in a transaction

Explanation:

Similar questions