DROP INDEX nom_de_l_index ON nom_de_table
DROP INDEX
supprime l'index nommé
nom_de_l_index
de la table
nom_de_table
. DROP INDEX
ne fait rien avec la version 3.22 et les précédentes. Depuis
cette version, DROP INDEX
est un alias
d'ALTER TABLE
supprimant l'index.
This is a translation of the MySQL Reference Manual that can be found at dev.mysql.com. The original Reference Manual is in English, and this translation is not necessarily as up to date as the English version.