MySQL中表的约束
概念
约束是作用于表中字段上的规则,用于限制存储在表中的数据。
目的
保证数据库中数据的正确、有效性和完整性。
分类
约束 | 描述 | 关键字 |
---|---|---|
非空约束 | 限制该字段的数据不能为null | not null |
唯一约束 | 保证该字段的所有数据都是唯一、不重复的 | unique |
主键约束 | 主键是一行数据的唯一标识,要求非空且唯一 | primary key |
默认约束 | 保存数据时,如果未指定该字段的值,则采用默认值 | default |
检查约束(8.0.16版本 之后) | 保证字段值满足某一个条件 | check |
外键约束 | 用来让两张表的数据之间建立连接,保证数据的一致 性和完整性 | foreign key |
演示
案例需求: 根据需求,完成表结构的创建。需求如下:
字段名 | 字段含 义 | 字段类型 | 约束条件 | 约束关键字 |
---|---|---|---|---|
id | ID唯一 标识 | int | 主键,并且自动增长 | primary key, auto_increment |
name | 姓名 | varchar(10) | 不为空,并且唯一 | not null , unique |
age | 年龄 | int | 大于0,并且小于等 于120 | check |
status | 状态 | char(1) | 如果没有指定该值, 默认为1 | default |
gender | 性别 | char(1) | 无 |
create table student (
id int primary key auto_increment comment 'ID唯一标识',
name varchar(20) not null unique comment '姓名',
age int check ( age>0 && age<=120 ) comment '年龄',
status char(1) default '1' comment '状态',
gender char(1) comment '性别'
) comment '学生表';
外键约束
/*演示数据:*/
create table department
(
id int auto_increment comment 'ID' primary key,
name varchar(50) not null comment '部门名称'
) comment '部门表';
insert into department (id, name)
values (1, '研发部'),
(2, '市场部');
create table employee
(
id int auto_increment comment 'ID' primary key,
name varchar(50) not null comment '姓名',
entrydate date comment '入职时间',
department_id int comment '部门ID'
) comment '员工表';
insert into employee (id, name, entrydate, department_id)
values (1, '张三', '2023-01-05', 1),
(2, '李四', '2023-01-06', 2),
(3, '王五', '2023-01-07', 2),
(4, '赵六', '2023-01-08', 2);
添加外键
create table 表名(
字段名 数据类型,
...
[constraint] [外键名称] foreign key (外键字段名) references 主表 (主表列名)
)
/*案例:*/
create table employee
(
id int auto_increment comment 'ID' primary key,
name varchar(50) not null comment '姓名',
entrydate date comment '入职时间',
department_id int comment '部门ID',
constraint fk_employee_department_id foreign key (department_id) references department(id)
) comment '员工表';
alter table 表名 add constraint 外键名称 foreign key (外键字段名) references 主表(主表列名);
/*案例:*/
alter table employee add constraint fk_employee_department_id foreign key (department_id) references department(id);
删除外键
alter table 表名 drop foreign key 外键名称;
/*案例:*/
alter table employee drop foreign key fk_employee_department_id;
删除/更新行为
添加了外键之后,再删除父表数据时产生的约束行为,我们就称为删除或更新行为。具体的删除/更新行为有以下几种:
行为 | 说明 |
---|---|
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;
/*案例:*/
alter table employee add constraint fk_employee_department_id foreign key (department_id) references department(id) on update cascade on delete cascade;
update department set id=6 where name='市场部'; -- 子表employee中的department_id也跟着修改了。
delete from department where id=6; -- 子表employee中的department_id=6的记录也被删除了。*/
/*在一般的业务系统中,不会修改一张表的主键值。*/
alter table 表名 add constraint 外键名称 foreign key (外键字段) references 主表名(主表字段名) on update set null on delete set null;
/*案例:*/
alter table employee add constraint fk_employee_department_id foreign key (department_id) references department(id) on update set null on delete set null;
delete from department where id=2; -- 子表employee中的department_id=2的记录的department_id=null*/