美文网首页
MYSQL重建主键索引

MYSQL重建主键索引

作者: 戬谷stone | 来源:发表于2019-06-01 14:01 被阅读0次

    删除原有ID列:

    alter table order_shbk drop id;

    重建ID列,现在ID全部为0 

    alter table order_shbk add id int(11) not null first;

    设置ID主键自增:

    alter table order_shbk modify column id int( 11 ) not null auto_increment,add primary key(id);

    alter table order_shbk drop id;

    alter table order_shbk add id int(11) not null first;

    alter table order_shbk modify column id int( 11 ) not null auto_increment,add primary key(id);

    相关文章

      网友评论

          本文标题:MYSQL重建主键索引

          本文链接:https://www.haomeiwen.com/subject/uxtatctx.html