我将使用“多列索引”设计mysql表/列。

我检查了一些有关“多列索引”的文章。但是我找不到与“多列索引”选项“之间”有关的信息。

http://dev.mysql.com/doc/refman/5.0/en/multiple-column-indexes.html

http://www.mysqlfaqs.net/mysql-faqs/Indexes/When-does-multi-column-index-come-into-use-in-MySQL

所以我想将查询用作:

select x_id, date from table_name where x_id = 'x' and date between 'x1' and 'x2'


与“多列索引”一起使用是否正确?

正如我所看到的,每个人都使用选项“ =”,“>”,“

最佳答案

之间与>和

09-26 05:20