PHP Developer Question:

Download Job Interview Questions and Answers PDF

How to repair MySQL table?

PHP Developer Interview Question
PHP Developer Interview Question

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.

Download PHP Developer Interview Questions And Answers PDF

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