MYSQL添加約束,刪除約束 添加列,修改列,刪除列 添加主鍵約束: alter table 表名 add constraint 主鍵 (形如:PK_表名) primary key 表名(主鍵字段); 添加外鍵約束: alter table 從表 add constraint 外鍵(形如:FK_從表_主表) foreign key 從表(外鍵字段) references 主表(主鍵字段); 刪除主鍵約束: alter table 表名 drop primary key; 刪除外鍵約束: alter table 表名 drop foreign key 外鍵(區分大小寫); 添加列: alter table 表名 add column 列名 varchar(30); 刪除列: alter table 表名 drop column 列名; 修改列名MySQL: alter table bbb change nnnnn hh int; 修改列屬性: alter table t_book modify name varchar(22);