How do I clear all the entries from just one table in MySQL with PHP?
|
|
Actually I believe the MySQL optimizer carries out a TRUNCATE when you DELETE all rows. |
||
|
|
|
|
unless you need to preserve the current value of the AUTO_INCREMENT sequence, in which case you'd probably prefer
though if the time of the operation matters, saving the AUTO_INCREMENT value, truncating the table, and then restoring the value using
will happen a lot faster. |
||
|
|
|
|
is the SQL command. In PHP, you'd use:
|
||
|
|
|
|
or
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? |
||
|
|
|
Be careful with it though. |
||
|
|
