我正在尝试在 tsql 中使用更新和删除来创建约束。我尝试了几种不同的方法,现在我有点卡住和沮丧 - 看起来很简单。我知道您无法更改现有约束,因此我不确定如何执行此操作;
alter table AllowedCars
add constraint FK_AllowedCars_CarID foreign key (CarID)
references Cars(LocusID) on delete cascade,
constraint FK_AllowedCars_CarID foreign key (CarID)
references Cars(CarID) on update cascade
或这个;
alter table AllowedCars add constraint FK_AllowedCars_CarID foreign key (CarID)
references Cars(CarID) on delete cascade and on update cascade