DROP INDEX
Remove an existing index from a table. This command deletes the index structure, potentially impacting query performance but freeing storage.
Syntax
DROP INDEX [IF EXISTS] index_name ON tbl_name
[WAIT n |NOWAIT]Description
Privileges
Online DDL
DROP INDEX IF EXISTS ...
WAIT/NOWAIT
Progress Reporting
See Also
Last updated
Was this helpful?

