与包含 GUID 的 nvarchar(32) 相比,使用 UniqueIdentifier 数据类型有何优势?

发布于 2024-12-12 12:28:42 字数 166 浏览 0 评论 0原文

UniqueIdentifier 数据类型有何优点

我想知道 SQL Server Over nvarchar(32) 数据类型中包含 GUID String 的 (从 C# 发送)。

I want to know what are the advantages of a UniqueIdentifier datatype in SQL Server

Over nvarchar(32) datatype which contains a GUID String (being sent from C#).

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

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

发布评论

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

评论(1

梦初启 2024-12-19 12:28:42

从服务器的角度来看:

  • 我希望能更有效地存储 Guid 字段 - 它只需要 16 个字节,而不是 32 或可能 64+,具体取决于 nvarchar 的存储方式
  • <服务器可以将其视为不透明的二进制数据 - 例如,在进行比较时不需要智能。没有文化或大小写敏感性。从根本上来说,它不是文本数据,因此不存在与文本相关的所有问题和复杂性。
  • 服务器可以决定使用Guid的已知结构来更有效地建立索引。例如,如果某些位比其他位更有可能随机分布,则这些位可以用于索引。

从程序员的角度来看:

  • 它对期望的数据做出了更清晰的陈述。
  • 您不需要任何验证,并且永远不会担心无效数据 - 它们只是 GUID。

我非常喜欢以最接近数据逻辑含义的形式保存数据。例如,如果您要存储日期和时间数据,如果您拥有日期/时间值而不是字符串,则比较等会变得更加简单。与字符串(或任何其他表示形式,但通常是字符串)之间的转换只应在必要时执行。

From the server's point of view:

  • I'd expect a Guid field to be stored more efficiently - it only needs 16 bytes, instead of 32 or potentially 64+ depending on exactly how the nvarchar is stored
  • It can be treated as opaque binary data by the server - no intelligence is required when making comparisons, for example. No cultural or case sensitivity. It's fundamentally not textual data, so doesn't have all the issues and complexities associated with text.
  • The server could decide to use the known structure of a Guid to index more efficiently. For example, if some bits are more likely to be randomly distributed than others, those could be used for indexing.

From a programmer's point of view:

  • It makes a clearer statement about the expected data.
  • You don't need any validation, and you'll never have any concerns about invalid data - they're just GUIDs.

I'm a big fan of keeping data in whatever form is closest to the logical meaning of the data. For example, if you're going to store date and time data, it makes life much simpler for comparisons etc if you've got a date/time value rather than a string. Conversions to and from string (or any other representation, but it's usually string) should only be performed where necessary.

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