How do I clear all the entries from just one table in MySQL with PHP?
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? |
|||||
|
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:
|
|||
|
|
|
Actually I believe the MySQL optimizer carries out a TRUNCATE when you DELETE all rows. |
|||
|
|
|
Don't mean to sound rude but this is something that can be easily answered with a quick google search. You should do that before you ask a community. w3schools.com is a great website for learning all this stuff. Here is a link that is a great tutorial for php and mysql. http://www.w3schools.com/php/php_mysql_intro.asp |
|||
|
|
