Skip to main content

DROP INDEX

Remove an index.

Syntax

Parameters

ParameterDescription
IF EXISTSDo not raise an error if the index does not exist
index_nameName of the index to remove

Examples

DROP INDEX IF EXISTS idx_articles_category;

See also