在 MySQL 中的日期字段上放置索引

发布于 2024-09-25 13:57:44 字数 206 浏览 6 评论 0原文

将索引放在日期字段上对我来说是否有任何真正的好处,这些字段将主要用于使用诸如.

dateField < 'var'

搜索

'var' BETWEEN dateField1 AND dateField2

已经完成了很多,但我从来没有对它们进行直接比较“=”。

Is there going to be any real benefit to me putting indexes onto date fields that are going to be mainly used in queries using stuff like.

dateField < 'var'

And

'var' BETWEEN dateField1 AND dateField2

The searches get done a lot but I am never doing a direct comparison "=" on them.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

土豪我们做朋友吧 2024-10-02 13:57:44

是的当然。范围搜索将受益于索引,就像相等搜索一样。

引自 MySQL 参考手册:MySQL 如何使用索引

B 树索引特征

B 树索引可用于使用 =、>、>=、<、<= 或 BETWEEN 运算符的表达式中的列比较。如果 LIKE 的参数是不以通配符开头的常量字符串,则索引还可以用于 LIKE 比较。

在某些情况下,如果范围最终太大,优化器可能决定不使用索引,因为表扫描实际上可能更快。使用 EXPLAIN 查看哪个 (如果有)索引将用于您的查询。

Yes of course. Range searches will benefit from an index, just as much as equality searches.

Quoting from the MySQL Reference Manual :: How MySQL Uses Indexes:

B-Tree Index Characteristics

A B-tree index can be used for column comparisons in expressions that use the =, >, >=, <, <=, or BETWEEN operators. The index also can be used for LIKE comparisons if the argument to LIKE is a constant string that does not start with a wildcard character.

In some situations, the optimiser may decide not to use the index if the range will end up to be too big, as a table scan might actually be faster. Use EXPLAIN to see which (if any) indexes will be used on your query.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文