Drop Index
DROP INDEX idx_city ON students; or ALTER TABLE students DROP INDEX idx_city; You cannot DROP the PRIMARY KEY with DROP INDEX that way — use ALTER TABLE DROP PRIMARY KEY (and have a plan).
Drop unused indexes to speed writes. Confirm with EXPLAIN that a slow query was not using it.
Trap — dropping an index that a UNIQUE constraint needs — uniqueness goes too.
On the example next to this theory — Drop Index — keys and constraints protect data integrity; indexes speed lookups.
Exam tip
DROP INDEX idx_city ON students;