约束名 | 约束关键字 |
---|---|
主键 | primary key |
唯一 | unique |
非空 | not null |
外键 | foreign key |
检查约束 | mysql不支持 |
通常不使用业务字段(身份证,学号)作为主键,单独使用一个id作为主键,可以没意义,只要唯一,非空就行
在创建表的时候添加主键
id int primary key
auto_increment
在已有的表中添加主键,id设置主键
alter table student add primary key(id);
删除主键
alter table student drop primary key;
auto_increment
主键约束=唯一约束+非空约束,那么有什么区别吗?
主键约束只能出现一次,唯一+非空约束可以多次出现
员工表:从表(使用别人的数据)
部门表:主表
新增表的时候创建外键
constraint emp_depid_fk foreign key(dep_id) references department(id)
向已有表添加外键
alter table employee add constraint emp_depid_fk foreign key(dep_id) references department(id)
删除外键
alter table employee drop foreign key emp_depid_fk;
主表中的数据变化,从表中的数据也跟着变化
on delete cascade on update cascade
代码块CREATE DATABASE ec14;USE ec14;CREATE TABLE student(id int PRIMARY key auto_increment,stu_name varchar(10) not null);CREATE TABLE subj(id int PRIMARY key auto_increment,sub_name varchar(10));CREATE TABLE score(id int PRIMARY key ,stu_id int,sub_id int,score int not null,CONSTRAINT stu_fk FOREIGN key (stu_id) REFERENCES student(id) on DELETE CASCADE on UPDATE CASCADE,CONSTRAINT sub_fk FOREIGN key (sub_id ) REFERENCES subj (id) on DELETE CASCADE on UPDATE CASCADE);select from score;