- 论坛徽章:
- 0
|
mysql> desc notice_message;
+-------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------------+------------------+------+-----+---------+----------------+
| id | int(11) unsigned | NO | PRI | NULL | auto_increment |
| member_id | int(11) unsigned | NO | MUL | 0 | |
| message | char(255) | NO | MUL | | |
| submit_date | datetime | NO | MUL | | |
+-------------+------------------+------+-----+---------+----------------+
mysql> show index from notice_message;
+----------------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
+----------------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
| notice_message | 0 | PRIMARY | 1 | id | A | 3790729 | NULL | NULL | | BTREE | |
| notice_message | 1 | member_id | 1 | member_id | A | 1263576 | NULL | NULL | | BTREE | |
| notice_message | 1 | submit_date | 1 | submit_date | A | 3790729 | NULL | NULL | | BTREE | |
| notice_message | 1 | message | 1 | message | A | 3790729 | 20 | NULL | | BTREE | |
| notice_message | 1 | submit_date_id | 1 | submit_date | A | 3790729 | NULL | NULL | | BTREE | |
| notice_message | 1 | submit_date_id | 2 | id | A | 3790729 | NULL | NULL | | BTREE | |
+----------------+------------+----------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
mysql> explain SELECT * FROM `notice_message` WHERE submit_date > '2009-03-05 00:00:00' AND submit_date < '2009-03-06 00:00:00' ORDER BY id DESC LIMIT
0,5000;
+----+-------------+----------------+-------+----------------------------+-------------+---------+------+-------+-----------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+----------------+-------+----------------------------+-------------+---------+------+-------+-----------------------------+
| 1 | SIMPLE | notice_message | range | submit_date,submit_date_id | submit_date | 8 | NULL | 13762 | Using where; Using filesort |
+----+-------------+----------------+-------+----------------------------+-------------+---------+------+-------+-----------------------------+
1 row in set (0.00 sec)
这里为什么用不到 聚合索引 submit_date_id ,使用 use index(submit_date_id) 也用不到的!
以前是
SELECT * FROM `notice_message` WHERE submit_date LIKE '2009-03-05%' ORDER BY id DESC LIMIT 7500,50;
但是 LIKE 根本用不到索引,全表扫描,十几分钟。才换成上面的,但排序还是用不到索引! |
|