PHP Developer Question:

How to repair MySQL table?

Answer:

The syntex for repairing a mysql table is:

REPAIR TABLE tablename
REPAIR TABLE tablename QUICK
REPAIR TABLE tablename EXTENDED

This command will repair the table specified.
If QUICK is given, MySQL will do a repair of only the index tree.
If EXTENDED is given, it will create index row by row.

Read All 57 PHP Developer Questions
Previous QuestionNext Question
How to know the number of days between two given dates using PHP?Described persistent cookie in PHP?