MySQL使用外鍵實(shí)現(xiàn)級(jí)聯(lián)刪除與更新的方法?
設(shè)定外鍵為級(jí)聯(lián)刪除就可以了。alter table B add constraint fk_ID foreign key (ID) references A(ID) on delete cascade;這樣只需:delete from A where ID=nnnn; 就可以自動(dòng)刪除對(duì)應(yīng)B表內(nèi)容了。通過外鍵無法實(shí)現(xiàn)同步更新。