常见的6种约束/规则
主键约束(primary key):具有唯一且非空 外键约束(foreign key) 非空约束(not null):不可为空 唯一性约束(unique [key|index]):唯一,可为空,但空值只允许出现一次 默认值约束(default):create(address varchar(50) default ‘南京’) 自增约束(auto_increment):随着记录增加,基于最新的记录的id进行+1的自增长 外键的定义:如果同一个属性字段x在表一中是主键,而在表二中不是主键,则字段称为表二的外键。
创建外键约束作用(误删、修改),保证数据的完整性和一致性。
主键表和外键表的理解
- 以公共关键字作为主键的表为主键表(父表、主表)
- 以公共关键字作为外键的表为外键表(从表、外表)
注意:与外键关联的主表的字段必须设置为主键。要求从表不能是临时表, 主表外键字段和从表的字段具备相同的数据类型、字符长度和约束(不包括主键约束)。
创建主表test01
create table test01 (hobid int(4),hobname varchar(50));
创建从表test02
create table test02 (id int(4) primary key auto_increment,name varchar(10),age int(3),hobid int(4));
为主表test01添加一个主键约束,主键名建议以"PK_"开头。foreign key外键约束 primary key主键约束
alter table test01 add constraint PK_hobid primary key(hobid);
为从表test02表添加外键,并将test02表的hobid字段和test01表的hobid字段建立外键关联。
alter table test02 add constraint FK_hobid foreign key(hobid) references test01(hobid); references:引用
可以使用查询表语句结构命令查看外键关联
show create table test02;
插入新的数据记录时,要先主表再从表,否则会报错
insert into test01 values(1,‘runing’); insert into test02 values(1,‘zhangsan’,20,1);
删除数据记录时,要先从表再主表,也就是说删除主键表时必须先删除其他与之关联的表。
delete from test01; delete from test02; 删除数据表也是一样,先删从表再删主表
查看和删除外键约束
show create table test02; alter table (表名) drop foreign key (约束值) alter table test02 drop foreign key FK_hobid; desc test02; show create table test02;
|