mysql ID有重复值后设置主键

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,如需转载请自行联系原作者
上一篇:Android ListView中侧滑、折叠效果的简单实现方法


下一篇:最简单也最难——如何获取到Android控件的高度