什么是MYSQL复合索引?
优点?为什么不单独索引字段呢?任何人都可以用简单的术语解释我吗?
Advantages? and why not just index fields separately? can any body explain me in simple terms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您必须使用复合 WHERE 进行查询(例如在两个不同的字段上),则复合索引应该比使用两个单一索引更快...
这是一个一般性答案,无论如何你应该分析任何单个查询......
If you have to query using a composite WHERE (say on two different fields) a composite index should be faster than having two single indexes...
This is a general answer, anyway you should analyze any single query...