1 删除主键自增
alter table 表名 modify 主键字段 数据类型;
2 删除主键约束
alter table 表名 drop primary key;
提示:如果主键有自增属性,删除主键会报错,ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key,需要先删除auto_increment,然后再删除主键。