约束
*概念:对表中的数据进行限定,保证数据的正确性,有效性和完整性。
*分类:
1.主键约束:primary key
1.注意:
1.含义:非空且唯一
2.一张表只能有一个字段为主键
3.主键就是表中记录的唯一标识
删除主键:alter table 表名 drop primary key
在添加主键约束后面 + auto_increment 使主键自动增长
2.非空约束:not null
3.唯一约束:unique
*删除唯一约束:alter table 表名 drop index 加唯一约束的字段名;
4.外键约束:foreign key
*语法:
constraint 外键名称 foreign key (外键列名称)references 主表名称(主表列名称)
*删除外键: alter table 表名 drop foreign key 外键名称
创建表后再添加外键使用 ADD关键字
*添加外键设置级联更新和级联删除:
alter table 表名 ADD constraint 外键名称 foreign key(外键列名称)references主表名(主表列名)on update cascade on delete cascade;