标签名称使用主键还是唯一索引?

发布于 2024-11-18 00:58:14 字数 63 浏览 1 评论 0原文

我只是想知道,如果我实现了标签系统,我应该在标签名称上使用主键,还是只在标签名称列上使用带有唯一索引的常用主键?

I'm just wondering that, if I implemented a tags system, should I use a primary key on the tag name, or just have the usual primary key with a unique index on the tag name column?

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

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

发布评论

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

评论(2

标点 2024-11-25 00:58:14

假设标记实体将在数百万行中使用,则数字列作为外键列将比字符串表现得更好。这就是为什么使用代理键

所以“只需在标签名称列上使用带有唯一索引的常用主键”

Assuming the tag entity will be used in millions of rows, a numeric column will perform better than a string as a foreign key column. This is why you use surrogate keys

So "just have the usual primary key with a unique index on the tag name column"

岛歌少女 2024-11-25 00:58:14

如果表中有两个键,那么将哪一个作为“主”键并没有什么区别。重要的是您打算如何使用它们。

If you have two keys in a table then it makes no difference which one you make the "primary" key. What matters is how you intend to use them.

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