Php – Clear data in MySQL table with PHP?

MySQLPHP

How do I clear all the entries from just one table in MySQL with PHP?

Best Answer

TRUNCATE TABLE tablename

or

DELETE FROM tablename

The first one is usually the better choice, as DELETE FROM is slow on InnoDB.

Actually, wasn't this already answered in your other question?