添加单个索引

ALTER TABLE tableADD INDEX 'index1'('moblie') ;

添加多列索引

ALTER TABLE table ADD INDEX 'index2'('mobile', 'name') ;

删除索引

drop index index1 on table