SQL Server 2008 中允许重复的唯一标识符吗?

发布于 2024-11-17 15:18:44 字数 390 浏览 2 评论 0原文

假设我的数据库中只有 2 个表。这两个表是:InputType 和 HardwareType。每个表都使用 GUID 作为主键。从InputType 到HardwareType 有一个外键。

我遇到的问题是,会有多行 InputType 引用 HardwareType 中的同一行(即每种类型的硬件有多个输入)。问题在于,我在 InputType 中引用 HardwareType 中的 GUID 的列不允许重复 - 因此,不允许每个硬件类型有多个输入。

我可以通过将 InputType 中的列的数据类型设置为“varchar”或其他类型而不是“uniqueidentifier”来解决这个问题,但是我必须这样做吗?当 GUID 不是主键而是另一个表的外键时,是否有某种方法允许重复输入 GUID?

感谢帮助!谢谢。

Lets say I have only 2 tables in my DB. The two tables are: InputType and HardwareType. Each table uses GUIDs as their primary key. There is a foreign key from InputType to HardwareType.

The problem I am having is that there will be multiple rows of InputType that refer to the same row in HardwareType (ie. there are several inputs per type of hardware). The issue with this is that the column I have in InputType that refers to the GUID in HardwareType will not allow duplicates -- therefore, not allowing multiple inputs per hardware type.

I could probably get around this by setting the datatype of the column in InputType to a "varchar" or something instead of "uniqueidentifier", but do I have to do it this way? Is there someway to allow duplicate entries of GUIDs when it isn't the primary key, but instead a foreign key to another table?

Help is appreciated! Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情别恋 2024-11-24 15:18:44

仅仅因为数据类型是 UNIQUEIDENTIFIER 并不意味着您不能在该列中多次使用相同的值!

事实上,您可以 - 当然,除非您在该列上显式添加了 UNIQUE CONSTRAINTUNIQUE INDEX - 这是您的选择,但默认情况下不会应用任何内容,除非您自己做一些事情。

因此,您应该能够使用 UNIQUEIDENTIFIERInputType 引用 HardwareType - 即使 InputType 中的多行将引用HardwareType 中的同一行 - 完全没有问题。

Just because the datatype is UNIQUEIDENTIFIER doesn't imply you cannot have the same value in that column multiple times!

You CAN in fact - unless of course, you've explicitly added a UNIQUE CONSTRAINT or UNIQUE INDEX on that column - this is your choice, but there's nothing applied by default, unless you do something about it yourself.

So you should be able to reference HardwareType from InputType using the UNIQUEIDENTIFIER - even if multiple rows in InputType will reference the same row in HardwareType - no problems at all.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文