Backend Development
What is the difference between TRUNCATE, DELETE and DROP statements?
TRUNCATE TRUNCATE Command is a Data Definition Language operation. It is used to remove all the records from a table. It deletes all the records from an existing table but not the table itself. The structure or schema of the table is preserved. Truncate command marks the table for deallocation. This operation Read more…