约束的概述
概念:
约束是作用于表中字段上的规则,用于限制存储在表中的数据
目的:
保证数据库中数据的正确、有效性和完整性
约束的分类
注意:
约束是作用在表中的字段上的,可以在创建表的时候添加,也可以在表创建之后对表的字段进行修改添加
约束案例
create table user ( id int primary key auto_increment comment '用户id,主键', name varchar(10) not null unique comment '姓名', age int check ( age>0 && age<=120 ) comment '年龄', status char(1) default '1' comment '状态', gender char(1) comment '性别' ) comment '用户表'; • 1 • 2 • 3 • 4 • 5 • 6 • 7
注:
约束在创建表的时候添加在每个字段后,多个约束之间用空格间隔
外键约束
外键约束概念:
外键是用来让两张表的数据之间建立连接,从而保证数据的一致性和完整性
数据准备:
创建两张表–部门表和员工表
部门表:
create table dept ( id int auto_increment primary key comment 'id', name varchar(50) not null comment '部门名称' ) comment '部门表'; • 1 • 2 • 3 • 4
部门表的数据:
insert into dept (id, name) values (1, '研发部'), (2, '市场部'), (3, '财务部'), (4, '销售部'), (5, '总经办'); • 1 • 2 • 3 • 4 • 5 • 6
员工表:
create table emp( id int auto_increment primary key , name varchar(50) not null , age int, job varchar(20) comment '职位', salary int , entrydate date comment '入职时间', managerid int comment '直属领导id', dept_id int comment '所在部门id' ) comment '员工表'; • 1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9 • 10
员工表数据:
insert into emp 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 ); • 1 • 2 • 3 • 4 • 5 • 6 • 7
添加外键语法:
constraint 约束
create table 表名 ( 字段名 数据类型, ... constraint 外键名 foreign key (外键字段名) references 主表(主表列名) ); 或 alter table 表名 add constraint 外键名 foreign key (外键字段名) references 主表(主表列名); • 1 • 2 • 3 • 4 • 5 • 6 • 7 • 8 • 9
向emp表添加外键:
alter table emp add constraint fk_emp_dept_id foreign key (dept_id) references dept(id); • 1 • 2 • 3 • 4
删除外键:
语法:
alter table 表名 drop foreign key 外键名称; • 1
删除emp表的外键:
alter table emp drop foreign key fk_emp_dept_id; • 1
添加外键约束后对表的删除更新如何处理:
默认:no action
语法
直接在修改表的外键时最后添加
多个之间空格间隔
alter table 表名 add constraint 外键名 foreign key (外键字段名) references 主表(主表列名) on 行为 处理方式 ; alter table 表名 add constraint 外键名 foreign key (外键字段名) references 主表(主表列名) on update cascade; alter table 表名 add constraint 外键名 foreign key (外键字段名) references 主表(主表列名) on update cascade on delete cascade ;