1、创建索引
CREATE INDEX 索引名字 ON `field` ( teable_name );
2、删除索引
DROP INDEX 索引名字 ON `teable_name`;
3、查询索引
SHOW INDEX FROM `teable_name`;