https://blog.youkuaiyun.com/weiliangliang111/article/details/51333169
创建索引的sql语句:
create index “索引名称” on “表名(列名,列名)";//可以有很多列
删除索引的sql语句:
alter table ”表名“ drop index ”索引名“;
https://blog.youkuaiyun.com/weiliangliang111/article/details/51333169
创建索引的sql语句:
create index “索引名称” on “表名(列名,列名)";//可以有很多列
删除索引的sql语句:
alter table ”表名“ drop index ”索引名“;