MySQL indices can make your DB faster, but at times, you may need to remove them, for instance, when they are no longer needed or when a compound index is more appropriate.
For a MySQL DB named MyDB, you can remove a table index with...
MyDB@sys mysql> DROP INDEX `SomeIndexedColumn` ON `MyTable`;
Then, you can verify that this change took place, by showing the indices on the table afterwards...
MyDB@sys mysql> SHOW KEYS FROM MyTable;
Then you can proceed to add the indices or compound indices that your table needs.
No comments:
Post a Comment