为什么不直接先添加外键?
直接添加外键约束:
alter table tdb_goods add foreign key (goods_cate) references tdb_goods_cates (cate_name);
这样可以吗?会自动建立外键约束吗?
直接添加外键约束:
alter table tdb_goods add foreign key (goods_cate) references tdb_goods_cates (cate_name);
这样可以吗?会自动建立外键约束吗?
2016-06-04
举报