>  기사  >  데이터 베이스  >  一:mysql 聚合索引

一:mysql 聚合索引

WBOY
WBOY원래의
2016-06-07 16:25:561507검색

1:mysql 聚合索引 1: PRIMARY KEY (`id`), UNIQUE KEY `uid` (`uid`,`task_id`) ? 查询: ? ? mysql explain select * from user_task where uid = 232;+----+-------------+-----------+------+---------------+------+---------+-------+------+-------+|

1:mysql 聚合索引

1:

  PRIMARY KEY (`id`),
  UNIQUE KEY `uid` (`uid`,`task_id`)

?

查询:

? ?

mysql> explain select * from user_task where uid = 232;
+----+-------------+-----------+------+---------------+------+---------+-------+------+-------+
| id | select_type | table     | type | possible_keys | key  | key_len | ref   | rows | Extra |
+----+-------------+-----------+------+---------------+------+---------+-------+------+-------+
|  1 | SIMPLE      | user_task | ref  | uid           | uid  | 4       | const |  206 |       |
+----+-------------+-----------+------+---------------+------+---------+-------+------+-------+

?

? ?

mysql> explain select * from user_task where task_id = 1454;
+----+-------------+-----------+------+---------------+------+---------+------+-------+-------------+
| id | select_type | table     | type | possible_keys | key  | key_len | ref  | rows  | Extra       |
+----+-------------+-----------+------+---------------+------+---------+------+-------+-------------+
|  1 | SIMPLE      | user_task | ALL  | NULL          | NULL | NULL    | NULL | 55917 | Using where |
+----+-------------+-----------+------+---------------+------+---------+------+-------+-------------+
1 row in set (0.00 sec)

?

? ?

mysql> explain select * from user_task where task_id = 1454 and uid = 232;
+----+-------------+-----------+-------+---------------+------+---------+-------------+------+-------+
| id | select_type | table     | type  | possible_keys | key  | key_len | ref         | rows | Extra |
+----+-------------+-----------+-------+---------------+------+---------+-------------+------+-------+
|  1 | SIMPLE      | user_task | const | uid           | uid  | 8       | const,const |    1 |       |
+----+-------------+-----------+-------+---------------+------+---------+-------------+------+-------+
1 row in set (0.00 sec)

?

如果(a, b, c)

查询a ; a b ; a b c 会用到索引

?

所以建立索引的时候 如果要查询 b c ?那么可以 key(b, c)

?

KEY 和index 不同的是 key 可以有约束 同时会有索引

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.