Skip to main content

外键约束

# 添加外键
create table 表名(
字段名 数据类型,
……
[constraint] [外键名称] foreign key(外键字段名) references 主表(主表名称)
);
alter table 表名 add constraint 外键名称 foreign key(外键字段名) references 主表(主表列名);
# 删除外键
alter table 表名 drop foreign key 外键名称;
# 删除/更新行为
行为说明
no action当在父表中删除/更新对应记录时,首先检查该记录是否有对应外键,如果有则不允许删除/更新(restrict一致)
restrict当在父表中删除/更新对应记录时,首先检查该记录是否有对应外键,如果有则不允许删除/更新(于no action 一致)
cascade当在父表中删除/更新对应记录时,首先检查该记录是否有对应外键,如果有则删除/更新外键在子表中的记录
set null当在父表中删除对应记录时,首先检查该记录是否有对应外键,如果有则设置子表中该外键值为null(这要求该外键允许取null)
set default父表有变更时,子表将外键列设置成一个默认的值(Innodb不支持)
alter table 表名 add constraint 外键名称 foreign key (外键字段) references 主表名(主表字段名) on update cascade on delete cascade
create table dept(
id int auto_increment comment 'ID' primary key,
name varchar(50) not null comment '部门名称'
) comment '部门表';

insert into dept(id, name) values (1, '研发部'), (2, '市场部'), (3, '财务部'), (4, '销售部'), (5, '总经办');


create table emp(
id int auto_increment comment 'ID' primary key,
name varchar(50) not null comment '姓名',
age int comment '年龄',
job varchar(20) comment '职位',
salary int comment '薪资',
entrydate date comment '入职时间',
managerid int comment '直属领导ID',
dept_id int comment '部门ID'
) comment '员工表';

insert into emp(id, name, age, job, salary, entrydate, managerid, dept_id) values
(1, '金庸', 66, '总裁', 20000, '2000-01-01', null, 5),(2, '张无忌', 66, '项目经理', 12500, '2005-12-05', 1, 1),
(3, '杨肖', 66, '开发', 8400, '2000-11-03', 2, 1),(4, '韦一笑', 66, '开发', 11000, '2002-02-05', 2, 1),
(5, '常遇春', 66, '开发', 10500, '2004-09-07', 3, 1),(6, '小昭', 66, '程序员鼓励师', 6600, '2004-10-12', 2, 1);

alter table emp add constraint fk_emp_dept_id foreign key (dept_id) references dept(id);
alter table emp drop foreign key fk_emp_dept_id;
alter table emp add constraint fk_emp_dept_id foreign key (dept_id) references dept(id) on delete cascade on update cascade;
alter table emp add constraint fk_emp_dept_id foreign key (dept_id) references dept(id) on update set null on delete set null;