首先看一段代码
alter table employee add constraint FK foreign key (department_sn) references department (sn) on delete restrict on update restrict;
employee和department是两张表,FK为约束名 department_sn为employee表中的一个属性,sn为department表中的主键
sn为department的主键,而depart_sn并不是employee的主键,那么则称department为主表,employee为从表
on delete | update restrict 代表在主表进行删除和更新时,会查看是否存在外键依赖,如果有则不允许删除
类似的还有:
cascade 在主表进行操作时,如果有外键依赖,那么删除子表中的那条记录
set null 在主表进行操作时 如果有外键依赖 那么将子表中的数据设置为null
no action 同restrict
原文:https://www.cnblogs.com/huaxh/p/11298803.html