DROP INDEX

To delete an index definition from the store, use a DROP INDEX statement. Its form when deleting an index is:

DROP INDEX [IF EXISTS] index-name ON table-name

where:

For example, if table Users has an index called surnameIndex, then you can delete it using the following statement:

DROP INDEX IF EXISTS surnameIndex ON Users