1.建立普通索引
ALTER TABLE table_name ADD INDEX index_name (column_list)
alter table t_relation add index sysno_index(Fsysno),add index productid_index(Fproductid);
2.删除索引
alter table t_relation drop index index_name;
3.show index
show index from table_name;