MySQL 主键列上有重复索引?
我仍然对一些有关 INNODB 引擎索引的 MySQL 文档感到困惑。
Innodb引擎表的主键是否自动索引?
我是否需要在主键列上强制使用重复索引?
您的帮助将非常有用。
谢谢弗诺
I'm still confuse on some MySQL documentation regarding INNODB engine index.
Is the primary key on Innodb engine table is automatically index or not?
Do I need to force a duplicate index on the primary key column?
Your help will be much appricated.
thanks
Finau
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据定义,主键是键。
INDEX
术语与KEY
同义,因此只需将字段标记为
PK
并且不要创建其他索引。Primary key is a key by definition.
INDEX
term is synonymous toKEY
So just mark field as
PK
and don't create additional indexes.