1.主键约束:primary key
特点:非空且唯一;一张表只能有一个主键、主键是唯一标识
创建时添加主键:
create table stu(
id INT primary key,
name verchar(20)
);
添加主键约束:
alter table表名 modify id INT primary key;
去除主键约束:
alter table 表名 drop primary key;
2.非空约束 :not null
特点:添加的值不能为空
创建时添加非空约束
create table stu(
id INT,
name verchar(20)not null
);
添加非空约束:
alter table表名 modify name verchar(20)not null;
去除非空约束:
alter table 表名 name verchar(20);
3.唯一约束 :unique
特点:元素不能重复可以添加null
创建时添加唯一约束
create table stu(
id INT,
name verchar(20)unique
);
添加非空约束:
alter table表名 modify name verchar(20)unique;
去除非空约束:
alter table 表名 name verchar(20);
foreign key(表中的元素) (dept_id) references 外表(主键)
MySQL的约束
最新推荐文章于 2024-11-05 11:19:17 发布