DROP and TRUNCATE Table Tutorial in PHP
DROP will remove Whole Table(including Structure of Table with data) and TRUNCATE will remove only Whole data of table but table structure will remain as it is. This is the major difference between DROP and TRUNCATE.
DROP and TRUNCATE Syntax :
DROP TABLE table_name;
TRUNCATE TABLE table_name;
Comments
Post a Comment