What is true for DELETE & TRUNCATE commands?
Truncate command is same as delete command with no where clause.
Data cannot be rolled back when Truncate command is used, while data can be rolled back when delete command used.
Data cannot be rolled back when Delete command is used, while data can be rolled back when truncate command used.
Both are DML commands.