Mysql 增加或删除主键

1. 增加主键

alter table 表名 add  primary key(列名);

2. 删除主键

alter table 表名 drop primary key;

3.删除自增主键并新增主键

alter table student_info modify id int(3); -- 先删除该字段的自增约束

alter table student_info drop primary key; -- 再删除该字段的主键约束

alter table student_info drop id; -- 再删除该字段

alter table student_info add primary key(sno); -- 新增主键

 

posted @ 2021-06-21 22:12  Avicii_2018  阅读(418)  评论(0编辑  收藏  举报