约束(Constraint)
基础
什么是约束?
~~~~~
在创建表的时候,可以给表额字段添加相应的约束,添加约束的目的是为了保证表中数据的合法性、有效性、完整性。
常见的约束有哪些呢?
- 非空约束(not null):约束的字段不能为NULL
- 唯一约束(unique):约束的字段不能重复
- 主键约束(primary key):约束的字段既不能为NULL,也不能重复(简称PK)
- 外键约束(foreign key):…(简称FK)
- 检查约束(check):注意Oracle数据库有check约束,但是mysql没有,目前mysql不支持该约束。
简称很重要
非空约束
drop table if exists t_user;
create table t_user{
id int;
username varchar(255) not null,
password varchar(255)
};
insert into t_user(id,password) values(1,'123');
//这样会编译出错
//因为username不能为空
唯一性约束(unqiue)
唯一约束修饰的字段具有唯一性,不能重复。但可以为NULL。
drop table if exists t_user;
create table t_user{
id int,
username varchar(255) unique
};
insert into t_user values(1,'zhangsan');
insert into t_user values(2,'zhangsan');
//这样编译会出错
//因为usename唯一
insert into t_user values(3);
insert into t_user values(4);
//这样可以 因为允许NULL存在
案例:给两个列或者多个列添加unique
//多个字段联合起来添家unique
//多个字段同时相同时
//才报编译出错
drop table if exists t_user;
create table t_user{
id int,
usercode varchar(255),
username varchar(255),
unique(username,username) //表级约束
};
//非联合unique
//被unique修饰只要重复
//就编译报错
drop table if exists t_user;
create table t_user{
id int,
usercode varchar(255) unique,//列级约束
username varchar(255) unique
};
notnull没有表级约束,只有列级约束,直接在字段后面加就行
主键约束
drop table if exists t_user;
create table t_user{
id int primary key, //列级约束
username varchar(255),
email varchar(255)
};
insert into t_user(id,username,email) values(1,'zs','zs@123.com');
insert into t_user(id,username,email) values(2,'ls','ls@123.com');
insert into t_user(id,username,email) values(3,'ww','ww@123.com');
~~~~~~ 根据以上的测试得出:id是主键,因为添加了主键约束,主键字段中的数据不能为NULL,也不能重复。
主键相关的术语
- 主键约束:primary key
- 主键字段:被主键约束修饰的字段
- 主键值:插入主键字段的值
主键的作用
~~~~~
表的设计三范式中有要求,第一范式就要求任何一张表都应该有主键。
~~~~~
主键的作用:主键值是这行记录在这张表当中的唯一标识。(就像一个人的身份证号一样)
主键的分类
根据主键字段的字段数量来划分:
- 单一主键
- 复合主键(多个字段联合起来添加一个主键)(复合主键不建议使用,因为复合主键违反三范式)
根据主键性质来划分:
- 自然主键:主键值最好就是一个和业务没有任何关系的自然数。
- 业务主键:主键值和系统的业务挂钩。(例如:拿着银行卡的卡号做主键,拿着身份证号码作为主键)(不推荐用)
~~~~~~~~ 最好不要拿着和业务挂钩的字段作为主键。因为以后的业务一旦发生改变时,主键值可能也需要发生变化,但有的时候没有办法变化,因为变化可能会导致主键值重复。
一张表的主键约束只能有1个。
使用表级约束方式定义主键:
drop table if exists t_user;
create table t_user{
id int,
username varchar(255),
primary key(id)
};
以下内容是演示一下,复合主键不需要掌握:
drop table if exists t_user;
create table t_user{
id int,
username varchar(255),
primary key(id,username)
};
mysql提供主键值自增:
drop table if exists t_user;
create table t_user{
id int primary key auto_increment,
//id字段自动维护一个自增的数字
//从1开始,以1递增
username varchar(255)
};
insert into t_user values('a');
insert into t_user values('b');
insert into t_user values('c');
Navicat实现主键自增
提示:Oracale当中也提供了一个自增机制,叫做:序列(sequence)对象。
外键约束
外键约束相关术语
- 外键约束:foreign key
- 外键字段:添加有外键约束的字段
- 外键值:外键字段中的每一个值。
外键约束案例
请设计数据库表,用来维护学生和班级的信息?
第一种方案:一张表存储所有数据
no(pk) | name | classno | classname |
---|---|---|---|
1 | zs1 | 101 | 高三1 |
2 | zs2 | 101 | 高三1 |
3 | zs3 | 102 | 高三2 |
4 | zs4 | 102 | 高三2 |
缺点:冗余《不推荐》
第二种方案:两张表(班级表和学生表)
~~~~~~~~~~~~~~~~~~~~~~~~~
t_class 班级表
cno | cname |
---|---|
101 | 高三1 |
102 | 高三2 |
~~~~~~~~~~~~~~~~~~~~~~~~~ t_student 学生表
sno | sname | cno(该字段添加外键约束fk,如果不加约束这个外键就可以随便写) |
---|---|---|
1 | zs1 | 101 |
2 | zs2 | 101 |
3 | zs3 | 102 |
4 | zs4 | 102 |
~~~~~~~~
将以上表的建表语句发出来:t_student中的classno字段引用t_class表中的cno字段,此时t_student表叫作子表。t_class表叫作父表。
~~~~~~~~
删除数据的时候,先删除子表,再删除父表。
~~~~~~~~
添加数据的时候,先添加父表,再添加子表。
~~~~~~~~
创建表的时候,先创建父表,再创建子表。
~~~~~~~~
删除表的时候,先删除子表,再删除父表。
drop table if exists t_student;
drop table if exists t_class;
create table t_class{
cno int,
cname varchar(255),
primary key(cno)
};
create table t_student{
sno int,
sname varchar(255),
foreign key(classsno) references t_class(cno)
};
insert into t_table values(101,'xxx');
insert into t_table values(102,'yyy');
insert into t_student values(1,'zs1','101');
insert into t_student values(2,'zs2','102');
insert into t_student values(3,'zs3','101');
insert into t_student values(4,'zs4','102');
//此时若有插入如下
insert into t_student values(5,'zs5','103')l
//会报错 因为103不在父表中的cno字段中
~~~~~~ 外键值可以为NULL,注意外键字段引用其他表的某个字段时,被引用的字段不一定是主键,但至少具有唯一(unique)约束。