zoukankan      html  css  js  c++  java
  • SQL级联删除——删除主表同时删除从表——同时删除具有主外键关系的表

    create table a ( id  varchar(20) primary key, password varchar(20) not null )
    create table b ( id int identity(1,1)  primary key, name varchar(50) not null, userId varchar(20), foreign key (userId) references a(id) on delete cascade )

    表B创建了外码userId 对应A的主码ID,声明了级联删除

    测试数据:

    insert a values ('11','aaa')

    insert a values('23','aaa')

    insert b values('da','11')

    insert b values('das','11')

    insert b values('ww','23')

    删除A表内id为‘11’的数据,发现B表内userId 为“11”也被数据库自动删除了,这就是级联删除 delete a where

  • 相关阅读:
    Vijos1986
    vijos1790
    洛谷1005
    洛谷3381
    bzoj4034
    bzoj1564
    bzoj2648
    洛谷3348
    jzoi4964
    codevs3990
  • 原文地址:https://www.cnblogs.com/ejllen/p/3658173.html
Copyright © 2011-2022 走看看