关于sql server 主键外键关系冲突的若干解释
话说,今天小康在写数据库表的时候发现其中两个表不存在主外键关系,于是直接拉了一个上去,但是保存的时候提示错误
'sort' table saved successfully
'product' table
- Unable to create relationship 'FK_product_sort'.
ALTER TABLE 语句与 FOREIGN KEY 约束"FK_product_sort"冲突。该冲突发生于数据库"show",表"dbo.sort", column 'sortid'
'sort' table saved successfully'product' table- Unable to create relationship 'FK_product_sort'. ALTER TABLE 语句与 FOREIGN KEY 约束"FK_product_sort"冲突。该冲突发生于数据库"show",表"dbo.sort", column 'sortid'
仔细检查后发现在连个表里的同一个表名下存在不同ID的数据,删除后解决
aaaaaaaa