●indexを作成

alter table [テーブル名] add index [インデックス名] (張りたいカラム複数指定可)

●indexを閲覧

show index from [テーブル名]

●indexを削除

drop index [インデックス名] on [テーブル名]