mysql增加⾃增主键
mysql没有主键时,处于只读模式,对已有数据⽆法修改,此时可以增加⾃增主键解决。
mysql下载add produceALTER TABLE test ADD new_field_id int(5) not null auto_increment ,ADD primary key (new_field_id);
原有数据已有主键,想增加⾃增字段为主键:
alter table face_user_info add primary key (iid int auto_increment);
ALTER TABLE face_user_info ADD new_field_id int(5) not null auto_increment ,ADD primary key (new_field_id);
update face_user_info set user_type=3 where new_field_id>24;
delete from face_user_info where new_field_id>36;
//倍增数据
insert into face_user_info select * from face_user_info
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论