1.删除原有的主键 我现在有个note表为例,其中主键命名为Noteid. alter table note drop noteid;
2.重新增加主键,并且设置为auto_increment alter table note -> add noteid int not null auto_increment first, -> add primary key(noteid);