What is the difference between TRUNCATE and DELETE commands?
Pradeep
Select an image from your device to upload
delete is DML cmd so we hav to save after delete i.e. no autosave
truncate is DDL cmd so autosave
and truncate is faster than delete
bcoz delete cmd deletes rows one by one
Truncate is faster than delete because the Delete command deletes the records row by row
and command truncate delete all at once