mysql的级联操作

WBOY
发布: 2016-06-07 16:19:31
原创
1426 人浏览过

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.表建好后

   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表中的数据也会被删除掉。这里就应用到了级联删除。

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板