日期:2014-05-18 浏览次数:20559 次
--为ta创建主健 alter table ta add constraint pk_ta_id primary key (id) go --为tb创建外健,并指定级联删除 alter table tb add constraint fk_tb_aid foreign key (aid) references ta(id) on delete cascade
------解决方案--------------------
alter table tb add constraint fk_tb_tb1 foreign key(id) references tb1(id) go
------解决方案--------------------
初学的时候外键添加不成功最常见的错误就是与主表的主键列类型不匹配
------解决方案--------------------