Indexes in mysql can be deleted. You can use the "DROP INDEX" statement to delete the index. The syntax format is "DROP INDEX
ON " . It is recommended to delete unused indexes because they will slow down the update speed of the table and affect the performance of the database.
(Recommended tutorial: mysql video tutorial)
Deleting an index means to delete the table Delete existing indexes. It is recommended to delete unused indexes because they will slow down the update speed of the table and affect the performance of the database. For such an index, it should be deleted.
Basic syntax
When the index is no longer needed, you can use the DROP INDEX statement to delete the index.
Grammar format:
DROP INDEX <索引名> ON <表名>
The syntax description is as follows: