MySQL 的重复键
我想知道是否可以有多个主键...如...
id name description slug
我是否可以执行与 slug
ON DUPLICATE KEY 相关的查询code> 当我有一个自动递增的 id
列时......
I'm wondering if it's possible to have multiple primary keys.... as in....
id name description slug
Is it possible for me to do an ON DUPLICATE KEY
query relating to the slug
when I have an id
column that's auto incrementing....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。您只需要为 slug 创建一个 UNIQUE 索引即可。
Yes. You just need to create a UNIQUE index for slug.
是的,您可以创建复合主键或可以为另一个字段创建索引。
Yes you can create composite primary key or can create the index for another field.