多列索引和ORDER BY

时间:2013-01-08 23:40:26

标签: mysql indexing

我有一个mysql数据库,在一个aws rds微实例上托管了700万行。

我正在进行此类查询:

SELECT
  `id`, `address`, `property_type`, `rooms`,
  `published`, `size`, `net_rent`, `gross_rent`,
  `purchase_price`, `original_id`
FROM (`properties`)
WHERE
  `postcode` IN ('1000', '1001', '1002', '1003',
                 '1004', '1005', '1006', '1007',
                 '1010', '1011', '1012', '1014',
                 '1015', '1017', '1018', '1019')
  AND `published` < '2013-01-09'
  AND `property_type` IN ('Apartment', 'Apartment with terrace',
                          'Attic', 'Attic flat / penthouse',
                          'Loft', 'Maisonette', 'Studio')
  AND `sale_or_rent` = 'rent'
LIMIT 50

因此我创建了一个类似的索引:

| properties |          1 | listing       |            1 | postcode      | A         |       25091 |     NULL | NULL   | YES  | BTREE      |         |               |
| properties |          1 | listing       |            2 | published     | A         |     2333545 |     NULL | NULL   | YES  | BTREE      |         |               |
| properties |          1 | listing       |            3 | property_type | A         |     3500318 |     NULL | NULL   | YES  | BTREE      |         |               |
| properties |          1 | listing       |            4 | sale_or_rent  | A         |     3500318 |     NULL | NULL   | YES  | BTREE      |         |               |

到目前为止,一切都很好。当我尝试添加ORDER BY已发布的DESC(30“+用于一个查询)时,问题就出现了。

是否有一个有效的ORDER BY已发布的DESC知道我还需要发布在WHERE子句中?

1 个答案:

答案 0 :(得分:1)

我试着发布&#39;首先在索引