mysql add primary key auto_increment

添加字段id,并将其设置为主键自增

  • alter table TABLE_NAME add id int not null primary key Auto_increment

如果想添加已经有了一列为主键,可以用:

  • alter table TABLE_NAME add primary key(COL_NAME);

  • 如果想修改一列为主键,则需要先删除原来的主键:

alter table TABLE_NAME drop primary key;

再重新添加主键:

  • alter table TABLE_NAME add primary key(COL_NAME);

-------------The End-------------

本文标题:mysql add primary key auto_increment

文章作者:cloud sjhan

发布时间:2018年12月25日 - 19:12

最后更新:2018年12月25日 - 19:12

原始链接:https://cloudsjhan.github.io/2018/12/25/mysql-add-primary-key-auto-increment/

许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。

cloud sjhan wechat
subscribe to my blog by scanning my public wechat account
坚持原创技术分享,您的支持将鼓励我继续创作!
0%
;