多个约束键
如果我已提交:
- Resource(id(PK),name)
- Manager(id(PK),resource_id(FK),manager_resource_ID(FK))
resource_id和manager_id是否都应该是资源表中的外键。
我显然不想在每个列中输入任何不是适当资源的值,
当我添加第一个关系(resource_id <-> id)时,
它工作正常,但是当我添加第二个关系(manager_resource_id <-> id)时,它工作正常。 id) 它失败并出现错误:
无法创建关系 [ 。 。 .] ALTER TABLE 语句与 FOREIGN KEY 约束冲突 [...]。冲突发生在表 Resource、列 id 中
,还是我需要将其分成 3 个表?
资源(id,第一个,最后一个)
Resource_manager(id,resource_id,manager_ID)
经理(id)
if i have tabled:
- Resource (id (PK), name)
- Manager (id(PK), resource_id (FK), manager_resource_ID(FK))
Should resource_id and manager_id both be foreign keys into the Resource table.
i obviously dont want to enter any values in each of those columns that are not proper resources
when i add the first relationship (resource_id <-> id) it works fine but
when i add the second one (manager_resource_id <-> id) it fails with the error:
Unable to create relationship [ . . .] The ALTER TABLE statement conflicted with the FOREIGN KEY constraint [... ]. The conflict occured in table Resource, column id
or do i need to break this out into 3 tables?
Resource(id, first, last)
Resource_manager(id, resource_id, manager_ID)
Manager(id)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只是一个提示:
更新:
如果您的模型具有多对多的员工经理(有点不寻常),那么您可以这样做:
Just a hint:
UPDATE:
If your model has employee-manager as many-to-many (bit unusual) then you could do:
您必须在 Manager 表中创建外键。
You have to create the foreign keys in the Manager table.