标签名称使用主键还是唯一索引?
我只是想知道,如果我实现了标签系统,我应该在标签名称上使用主键,还是只在标签名称列上使用带有唯一索引的常用主键?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设标记实体将在数百万行中使用,则数字列作为外键列将比字符串表现得更好。这就是为什么使用代理键
所以“只需在标签名称列上使用带有唯一索引的常用主键”
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"
如果表中有两个键,那么将哪一个作为“主”键并没有什么区别。重要的是您打算如何使用它们。
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.