时间:2021-07-01 10:21:17 帮助过:22人阅读
)charset utf8;
2. 在创建好的表中增加
alter table my_tab1 add [constraint 外键名] foreign key(外键字段名) references mytab2(主键字段名);
三、删除外键
alter table my_tab drop foreign key 外键名字;
mysql中的外键foreign key
标签:操作 -- 表关联 类型 匹配 约束 alter tab var