top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How a MySQL table can be repaired?

+1 vote
229 views
How a MySQL table can be repaired?
posted May 13, 2014 by Karamjeet Singh

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

The Syntax for repairing a MySql table is
REPAIR TABLENAME,[TABLENAME,] , [Quick],[Extended]
This command will repair the table specified if the quick is given. Otherwise MySql will do a repair of only the index tree if extended is given.

answer May 14, 2014 by Mohit Sharma
Similar Questions
0 votes

How can I insert data into one table from two other tables where i have three tables namely users, role and userrole.
Now I want to insert the data into userrole table from users table and role table with a single statement.

...