InnoDBs 聚集索引中存在空值?
在 MySQL 中使用 InnoDB,我希望通过更好地利用聚集索引来加速选择,从而在主键中包含更常用的列。
但一些频繁使用的列允许为空(有时是这样)。有没有办法将它们包含在聚集索引中(并允许它们为空)?
如果没有,是否有一些解决方法或是否有其他方法可以做类似的事情?
Using InnoDB in MySQL, I want to speed up selects by utilizing the clustered index better, thus including more frequently used columns in the primary key.
But some frequent columns used are allowed to be null (and some times are). Is there any way to include these in the clustered index (and allow them to be null)?
If not, are there some workarounds or is there some other way to do something similar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,规范化表以排除可为空的字段将起作用(如 Battle_707 所评论)。
Normalizing the table to exclude the nullable field would work in this case (as commented by Battle_707).