select @t:=0;
update tbl_order set a=(@t:=@t+1);
alter table tbl_order add primary key(id);
alter table tbl_order change id id int(11) not null auto_increment;
本文转自 vfast_chenxy 51CTO博客,原文链接:http://blog.51cto.com/chenxy/1224262,如需转载请自行联系原作者
2021-07-29 04:19:12
select @t:=0;
update tbl_order set a=(@t:=@t+1);
alter table tbl_order add primary key(id);
alter table tbl_order change id id int(11) not null auto_increment;