PHP Simple QA
It contains Simple Questions and Answers in PHP
differences between drop and truncate in mysql
differences between drop and truncate in mysql
DROP TABLE table_name -it will delete the table and its data.
TRUNCATE TABLE table_name -it will delete the data of the table, but not the table definition.
Newer Post
Older Post
Home