mysql修改联合主键

Posted white knight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql修改联合主键相关的知识,希望对你有一定的参考价值。

参考 https://blog.csdn.net/BockSong/article/details/80933477

 

alter table TABNAME drop primary key;

alter table TABNAME add primary key(another_col,...);

 

alter table TABNAME 
modify field1 varchar(30) default NULL;

以上是关于mysql修改联合主键的主要内容,如果未能解决你的问题,请参考以下文章

mysql的联合主键与复合主键区别

mysql 主键索引,联合索引,单列索引使用场景

mysql中,索引,主键,唯一索引,联合索引的区别是?对数据库的性能有啥影响?

mysql主键是bree还是hash

MySQL联合主键

MySQL联合主键