DROP INDEXindex_nameONtbl_name
DROP INDEX drops the index named
index_name from the table
tbl_name. This statement is mapped to
an ALTER TABLE statement to drop the index. See
Section 12.1.4, “ALTER TABLE Syntax”.
Indexes on variable-width columns are dropped online; that is, dropping the indexes does not require any copying or locking of the table. This is done automatically by the server whenever it determines that it is possible to do so; you do not have to use any special SQL syntax or server options to cause it to happen.
In standard MySQL 6.0 releases, it is not possible to
override the server when it determines that an index is to be
dropped online. For more information, see
Section 12.1.4, “ALTER TABLE Syntax”.

User Comments
Add your own comment.