By A Web Design
The SHOW CREATE TABLE command:
To test whether an index has been bound to the clientmaster table, execute the SHOW CREATE TABLE statement as shown in Diagram 1:
The following is the syntax for verifying whether an index was created on column(s) of a table
Syntax:
<System prompt> SHOW CREATE TABLE <Table Name> \G;
Example:
mysql> SHOW CREATE TABLE clientmaster \G;

Diagram 1
In Diagram 1, KEY ‘index_id’ (‘clientid’) indicates that the index is bound on the column ‘clientid’.
MySQL allows dropping existing INDEXES. For this MySQL provides the ALTER TABLE and DROP statements. You can use the ALTER TABLE statement to drop "normal" or "unique" indexes.
To drop an index bound to a table column the base table must modified by using the ALTER TABLE statement as shown in Diagram 2.
Syntax:
<System prompt> ALTER TABLE <Table Name> DROP INDEX <Index Name>;
Example:
mysql> ALTER TABLE clientmaster DROP INDEX index_id;

Diagram 2
In Diagram 2, KEY ‘index_id’ (‘clientid’) does not appear which indicates that the index is successfully dropped from the column ‘clientid’.