为什么 AdventureWorksLT 中的表同时具有 PK 列和 rowguid 列?

发布于 2024-12-23 18:49:47 字数 230 浏览 0 评论 0原文

为什么 AdventureWorksLT 中的表同时具有 PK 列和 rowguid 列?这有什么理由吗?拥有这两列有什么意义?

对于 Product 表,您有 ProductIDrowguid,数据类型分别为 intuniqueidentifier

感谢您的帮助

Why tables in AdventureWorksLT have both a PK column and a rowguid column? Is there any reason for that? What's the point of having both columns?

For the Product table, you've got ProductID and rowguid, with data type respectively int and uniqueidentifier.

Thanks for helping

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

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

发布评论

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

评论(1

缱倦旧时光 2024-12-30 18:49:47

RowGUID 是全局唯一标识符,理论上 GUID 在同一台机器上不可能是相同的,因此它们用于标记可能移动的数据,例如在复制期间。

我们有许多网站将订单发布到中央系统,每个网站都可以使用相同的 INT OrderNumber 1-9999,因此我们用 GUID 标记所有订单并将其用作数字纸质记录。

人们不喜欢订单确认上的 GUID,他们喜欢简单的数字,这表明了两者可能的需求,甚至不需要了解表关系和键。

The RowGUID is a globally unique identifier, theoretically no to GUIDs can ever be the same on the same machine thus they are used to stamp data that may move around, during replication for example.

We have a number of websites that posts orders to a central system, each site could use the same INT OrderNumber 1-9999 so we stamp all orders with a GUID and use that as a digital paper trail.

Humans don't like GUIDS on their order confirmations they like simple numbers which hi lights 1 possible need for both without even getting into table relationships and keys.

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