A corrupted index can make the associated table inaccessible. This can cause any queries, applications, or automated processes that rely on the table to fail until the index is repaired. This article outlines how to repair the affected index.
CHECK TABLE <table_name>;
SHOW CREATE TABLE <table_name>;
ALTER TABLE <table_name> DROP INDEX <index_name>;
ALTER TABLE <table_name> ADD INDEX <index_name>(cols);
Last Reviewed: April 2026