My go-to SQL guide
What is the difference between DELETE and TRUNCATE statements?
Answer-
DELETE
Delete command to used to perform delete operation on the row of a table
It is a DML command
It is comparatively slower than the truncate statement
Users can roll back aft...
navvsingh.hashnode.dev9 min read