mysql执行计划分析

create table test1(a int,b tinyint,c varchar(20),d int); alter table test1 add primary key (a); --添加主键 alter table test1 drop primary key; --删除主键 alter table test1 add unique key (b,c); -- 添加惟一索引 alte
相关文章
相关标签/搜索