在Mysql中如果想删除一个表的主键,必选经过以下两部操作;

表结构如下:

第一:删除自增长的列

Alter table score change sno sno int(20);

第二:删除主键

Alter table score drop primary key;