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修改联合主键的主要内容,如果未能解决你的问题,请参考以下文章