mysql对已生成的表追加主键

对已生成的表追加主键

当导入外部数据时生成的表并没有主键,或建表之后才想起添加主键,这个时候我们要做追加主键。
假设 —— 表名:juwai 主键列名:kid
正确写法:alter table juwai add column kid int primary key auto_increment not null;
注意:kid后应紧跟int(属性)
错误写法:alter table juwai add column kid primary key auto_increment int not null;

你可能感兴趣的:(sem竞价常用)