Delete Large table rows using truncate table
Delete Large table rows using truncate table
truncate table tblnewcounty
The TRUNCATE TABLE is faster then Delete DELETE statement
TRUNCATE TABLE is functionally the same to the DELETE statement without a WHERE clause.