欢迎来到MySQL实战第60篇,修炼500篇,让我们今天有特殊的意义!
1.增加字段
alter table 表名 add 字段名 数据名 数据类型 字段属性 first|after 字段名
2.删除表的字段
alter table 表名 drop 字段名
3.删除主键
alter table 表名 drop primary key;
4.增加主键
alter table 表名 add primary key(字段名);
5.添加唯一键
alter table 表名 add unique key(字段名);
6.删除唯一键
alter table 表名 drop index 字段名;
求关注,一起修炼500篇,MySQL,让自己多个一个选择!
,