create table 表名(
字段 类型...,
...
foreign key(字段) references 主表名(id),
...
);
alter table 表名 add constraint 约束名 foreign key(字段名) references 主表名(id);其中约束名可以任意起
show create table 表名;
alter table 表名 drop foreign key 约束名;
方式一:使用逻辑删除(推荐)
alter table 表名 add constraint 约束名 foreign key(字段名) references 主表名(id) on delete 级联操作类型;
原文:https://www.cnblogs.com/Elite-Wang/p/14204167.html