来自 2 个具有部分键的表的 SQL Server 关系
请原谅我的英语不好。
我正在设计一个数据库并有 2 个表
标签
引导标签ID
varchar(5) 语言
Varchar(50) LabelText
在此表中,键是 LabelID 和 Language
在第二个表中,我有一些字段和一个字段 Guid NameLabelId
当设计图时,我尝试仅使用表标签的 NameLabelId 和 LabelId 从两个表创建关系
我收到错误“该列与现有主键或 UNIQUE 约束不匹配”...
有人可以帮助我吗?
谢谢
麦克斯
Excuse me for poor english.
I'm designing a database and having 2 tables
Labels
Guid LabelID
varchar(5) Language
Varchar(50) LabelText
In this table the key are LabelID and Language
In second table I have some fields and a field
Guid NameLabelId
When design diagram i try to create relationship from two tables using only NameLabelId and LabelId of the table Labels
I receive an error "The column do not match an existing primary Key or UNIQUE constraint"...
Can someone help me?
Thanks
MAX
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关系中的“主”表需要将其 GUID 列设置为主键,或者具有 UNIQUE 约束。
The "primary" table in your relationship needs to either have its GUID column set as primary key, or with a UNIQUE constraint.