mysql表的级联问题

mysql表的级联问题,第1张

mysql:

1、先给B表添加主键

alter table tableB add constraint b_PK primary key(date,channel)

2、将B表的组合主键关联到A表的外键组合键中

alter table tableB add constraint tableB_fk foreign key(date,channel) references tableA (date,channel) on DELETE CASCADE

3 delete from tableA where date =? and channel =? 就出发相关记录··~

create table temp(

id char(6) not null,

gradeId char(3) not null,

mark tinyint(1),

primary key(id,gradeId)

)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8651177.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-19
下一篇 2023-04-19

发表评论

登录后才能评论

评论列表(0条)

保存