Difference between Truncate and Delete(select multiple answers)
TRUNCATE is a DDL command whereas DELETE is a DML command
TRUNCATE is much faster than DELETE
In case of TRUNCATE ,Trigger doesn't get fired.But in DML commands like DELETE .Trigger get fired
All of the above