vote up 0 vote down star

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

flag

5 Answers

vote up 0 vote down

Actually I believe the MySQL optimizer carries out a TRUNCATE when you DELETE all rows.

link|flag
vote up 1 vote down
TRUNCATE TABLE `table`

unless you need to preserve the current value of the AUTO_INCREMENT sequence, in which case you'd probably prefer

DELETE FROM `table`

though if the time of the operation matters, saving the AUTO_INCREMENT value, truncating the table, and then restoring the value using

ALTER TABLE `table` AUTO_INCREMENT = value

will happen a lot faster.

link|flag
vote up 1 vote down
TRUNCATE TABLE table;

is the SQL command. In PHP, you'd use:

mysql_query('TRUNCATE TABLE table;');
link|flag
vote up 8 vote down
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?

link|flag
And from a requirement perspective, truncate will reset the indicies whereas delete won't. – Kezzer Apr 7 at 14:48
vote up 2 vote down
TRUNCATE TABLE mytable

Be careful with it though.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.