What is the difference between 'DELETE' and 'TRUNCATE'?
Q1. What is the difference between 'DELETE' and 'TRUNCATE'?
Answer: DELETE logs changes, TRUNCATE does not log changes
Explanation: DELETE logs changes, allowing rollback, while TRUNCATE does not log changes and is generally faster, but cannot be rolled back.