MySQL中的级联删除与更新策略on delete restrict on update restrict
在MySQL中,当我们执行级联删除与级联更新时,可能会执行On Delete Restrict和On Update Restrict语句,这两个语句中都可以有Restrict,No Action, Cascade,Set Null属性,我简单总结一下这些属性的含义。
比如有如下SQL语句:
/*==============================================================*/
/* Table: address */
/*==============================================================*/
create table tb_address
(
a_id int not null auto_increment comment '地址实体的唯一主键列',
u_id int comment '用户实体的主键属性',
a_name varchar(30) comment '地址的收件人',
a_phone varchar(14) comment '收件人电话',
a_detail varchar(200) comment '收货人详细地址',
a_state int comment '是否是默认地址 0 不是 1是默认地址',
primary key (a_id)
);
/*==============================================================*/
/* Table: user */
/*==============================================================*/
create table tb_user
(
u_id int not null auto_increment comment '用户实体的主键属性',
u_name varchar(20) not null comment '用户账号',
u_password varchar(64) not null comment '用户密码',
u_email varchar(50) not null comment '用户的邮箱!用于激活使用!',
u_sex varchar(4) comment '用户性别!',
u_status int comment '用户的激活状态 0 未激活 1 激活',
u_code varchar(64) comment '邮件激活码',
u_role int comment '用户 0 管理员 1',
primary key (u_id)
);
alter table tb_address add constraint FK_u_a_fk foreign key (u_id)
references tb_user (u_id) on delete restrict on update restrict;
ON DELETE操作
restrict(约束): 当在父表(即外键的来源表)中删除对应记录时,首先检查该记录是否有对应外键,如果有则不允许删除。
no action: 意思同restrict.即如果存在从数据,不允许删除主数据。
cascade(级联): 当在父表(即外键的来源表)中删除对应记录时,首先检查该记录是否有对应外键,如果有则也删除外键在子表(即包含外键的表)中的记录。
set null: 当在父表(即外键的来源表)中删除对应记录时,首先检查该记录是否有对应外键,如果有则设置子表中该外键值为null(不过这就要求该外键允许取null)。
ON UPDATE操作
restrict(约束): 当在父表(即外键的来源表)中更新对应记录时,首先检查该记录是否有对应外键,如果有则不允许更新。
no action: 意思同restrict.
cascade(级联): 当在父表(即外键的来源表)中更新对应记录时,首先检查该记录是否有对应外键,如果有则也更新外键在子表(即包含外键的表)中的记录。
set null: 当在父表(即外键的来源表)中更新对应记录时,首先检查该记录是否有对应外键,如果有则设置子表中该外键值为null(不过这就要求该外键允许取null)。
注:
NO ACTION和RESTRICT的区别: 只有在及个别的情况下会导致区别,前者是在其他约束的动作之后执行,后者具有最高的优先权执行。
标签:comment,varchar,记录,update,外键,restrict,MySQL,null From: https://blog.51cto.com/u_7044146/5965625