mysql 的级联操作
1.创建表a
create table a(
name char(20) not null,
id char(20) not null primary key);
2.创建表b
create table b(
b_name char(20) not null,
b_id char(20) not null ,
constraint foreign key(b_id) references a(id) on delete cascade);
3.表建好后,插入数据
insert into a values("111","1");
insert into a values("222","2");
在b表中插入下面数据 insert into b values("1","1"); 显示插入成功。
在b表中插入下面数据 insert into b values("1","3"); 显示插入失败。是因为这里设置了外键而a表中的id没(id=="3")的数据。
执行delete from a where id="1"; b表中的数据也会被删除掉。这里就应用到了级联删除。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。