- 论坛徽章:
- 0
|
"如果你想让下面两个语句也用上索引的话,应该调整下索引里列的顺序:
Index_U_Id: `type`, `ischecked`, `u_id`"
如果这样修改,那么第一条SQL可能就不会用到索引了吧,我试试再建个索引
Index_Type: `type`, `ischecked`
效果如下:
Index_U_Id: `u_id`, `type`, `ischecked`
Index_Type: `type`, `ischecked`
mysql> explain SELECT `ios_seeds`.* FROM `ios_seeds` WHERE (u_id=14 AND type=01 AND ischecked =1) ORDER BY `id` ASC ;
+----+-------------+-----------+------+-----------------------+------------+---------+-------------------+------+-----------
------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra
|
+----+-------------+-----------+------+-----------------------+------------+---------+-------------------+------+-----------
------------------+
| 1 | SIMPLE | ios_seeds | ref | Index_U_Id,Index_Type | Index_U_Id | 10 | const,const,const | 1 | Using
where; Using filesort |
+----+-------------+-----------+------+-----------------------+------------+---------+-------------------+------+-----------
------------------+
1 row in set (0.01 sec)
mysql> explain SELECT `ios_seeds`.* FROM `ios_seeds` WHERE (1=1 AND type=01 AND ischecked =1) ORDER BY `id` ASC ;
+----+-------------+-----------+------+---------------+------------+---------+-------------+------+-------------------------
----+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra
|
+----+-------------+-----------+------+---------------+------------+---------+-------------+------+-------------------------
----+
| 1 | SIMPLE | ios_seeds | ref | Index_Type | Index_Type | 6 | const,const | 1 | Using where; Using
filesort |
+----+-------------+-----------+------+---------------+------------+---------+-------------+------+-------------------------
----+
1 row in set (0.00 sec)
mysql> explain SELECT `ios_seeds`.* FROM `ios_seeds` WHERE (type=01 AND ischecked =1) ORDER BY `id` ASC ;
+----+-------------+-----------+------+---------------+------------+---------+-------------+------+-----------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+-----------+------+---------------+------------+---------+-------------+------+-----------------------------+
| 1 | SIMPLE | ios_seeds | ref | Index_Type | Index_Type | 6 | const,const | 1 | Using where; Using filesort |
+----+-------------+-----------+------+---------------+------------+---------+-------------+------+-----------------------------+
1 row in set (0.00 sec)
都能调用索引,这样做可以吗?
[ 本帖最后由 zhengdl126 于 2009-8-10 18:08 编辑 ] |
|