您现在的位置是: 首页 >  MySQL MySQL

mysql重建主键ID

冬寂 2020-08-06 13:33:10 【MySQL】 4847人已围观

删除原有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);
很赞哦! ( 30 )

站点信息

  • 建站时间:2020-08-10
  • 文章统计100篇文章
  • 标签管理标签云
  • 统计数据百度统计
  • 微信公众号:扫描二维码,关注我