既に存在するテーブルに項目追加して、その項目にインデックスを付与する手順

1)テーブル更新

alter table
 test_tbl
 add {項目名} datetime not null  FIRST;

2)インデックス付与

alter table
 test_tbl
 add index index1( {項目名});

逆に既存のテーブルから不要な項目を削除する場合は以下で対応可能

3)テーブルの項目削除

alter table
 test_tbl
 drop  {項目名}; 

おすすめの記事