What is the difference between TRUNCATE and DELETE?
Q1. What is the difference between TRUNCATE and DELETE?
Answer: Both A and B
Explanation: TRUNCATE is a DDL statement that is faster than DELETE because it doesn't log individual row deletions, and it cannot be rolled back unless in a transaction.