How to Drop an Index in MySQL

To drop an index in MySQL you need to know the index name, for example emp_ix1:

drop index emp_ix1;

IN THIS PAGE