Truncate vs Delete in SQL Server

Difference between DELETE and TRUNCATE in SQL Server Let’s discuss this point “Truncate vs Delete” below in simple way. Delete is a DML statement whereas Truncate is a DDL statement. Delete commmand deletes each row from the table which are satisfying the WHERE clause and logs it in the log file where as Truncate command […]

Truncate vs Delete in SQL Server Read More ยป