Mysql

it2024-07-18  67

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

表结构如下:

第一:删除自增长的列

Alter table score change sno sno int(20);

第二:删除主键

Alter table score drop primary key;

转载于:https://www.cnblogs.com/haibaowang/p/7146923.html

最新回复(0)