alter table test ADD KEY comp_index (auto_id);//给列添加key
alter table test modify auto_id int(20) auto_increment; //添加自增
image.png
alter table test ADD KEY comp_index (auto_id);//给列添加key
alter table test modify auto_id int(20) auto_increment; //添加自增