查看class表索引  
show index from class\G
创建class表的name字段的普通索引
方法1
create index index_name on class(name);
方法2
alter table class add index index_name(name);
删除索引
drop index index_name on class;
posted on 2022-10-03 17:01  KOA2后端  阅读(72)  评论(0)    收藏  举报