博客主页:
@不会压弯的小飞侠
✨欢迎关注:
点赞
收藏
⭐留言
✒
✨系列专栏:
MySQL数据库专栏
✨欢迎加入社区:
不会压弯的小飞侠
✨人生格言:知足上进,不负野心。
欢迎大佬指正,一起学习!一起加油!
概述
约束 | 描述 | 关键字 |
---|---|---|
非空约束 | 限制该字段的数据不能为null | NOT NULL |
唯一约束 | 保证该字段的所有数据都是唯一、不重复的 | UNIQUE |
主键约束 | 主键是一行数据的唯一标识,要求非空且唯一 | PRIMARY KEY |
默认约束 | 保存数据时,如果未指定该字段的值,则采用默认值 | DEFALLT |
检查约束(8.0.16版本之后) | 保证字段值满足某一个条件 | CHECK |
外键约束 | 用来让两张表的数据之间建立连接,保证数据的一致性和完整性 | FOREIGN KEY |
注意:由于MySQL版本过低,本次年龄案例就不演示了。
如需要自行测试:
age int check ( age > 0 && age <= 120 ) comment '年龄',
create table user(
id int primary key auto_increment comment '主键',
name varchar(10) not null unique comment '姓名',
status char(1) default '1' comment '状态',
gender char(1) comment '性别'
) comment '用户表';
age int check ( age > 0 && age <= 120 ) comment '年龄',
insert into user(name,status,gender) values (noll,'0','男');
insert into user(name,status,gender) values ('jkj','0','男');
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, '李四', 20, '项目经理',12500, '2005-12-05', 1,1),
(3, '王二', 33, '开发', 8400,'2000-11-03', 2,1),
(4, '刘五', 48, '开发',11000, '2002-02-05', 2,1),
(5, '小七', 43, '开发',10500, '2004-09-07', 3,1),
(6, '老八', 19, '程序员',6600, '2004-10-12', 2,1);
外键约束语法
CREATE TABLE 表名(
字段名 数据类型,
.…
[CONSTRAINT][外键名称] FOREIGN KEY (外键字段名) REFERENCES 主表(主表列名)
);
ALTER TABLE 表名 ADD CONSTRAINT 外键名称 FOREIGN KEY (外键字段名)REFERENCES 主表(主表列名);
ALTER TABLE 表名 DROP FOREIGN KEY 外键名称;
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;
外键的删除和更新行为
行为 | 说明 |
---|---|
NO ACTION | 当在父表中删除/更新对应记录时,首先检查该记录是否有对应外键,如果有则不允许删除/更新。(与RESTRICT一致) |
RESTRICT | 当在父表中删除/更新对应记录时,首先检查该记录是否有对应外键,如果有则不允许删除/更新。(与NO ACTION一致) |
CASCADE | 当在父表中删除/更新对应记录时,首先检查该记录是否有对应外键,如果有,则也删除/更新外键在子表中的记录。 |
SET NULL | 当在父表中删除对应记录时,首先检查该记录是否有对应外键,如果有则设置子表中该外键值为null(这就要求该外键允许取null)。 |
SET DEFAULT | 父表有变更时,子表将外键列设置成一个默认的值(Innodb不支持) |
ALTERTABLE表名 ADD CONSTRANT 外键名称 FOREIGNKEY(外键字段) REERENCES 主表名(主表字段名)ONUPDATE CSCADE ONDELETE CASCAOE;
alter table emp add constraint fk_emp_dept_id foreign key (dept_id) references dept(id) on update cascade on delete 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 ;