Home > Database > Mysql Tutorial > body text

一:mysql 聚合索引

WBOY
Release: 2016-06-07 16:25:56
Original
1447 people have browsed it

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`)
Copy after login

?

查询:

? ?

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 |       |
+----+-------------+-----------+------+---------------+------+---------+-------+------+-------+
Copy after login

?

? ?

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)
Copy after login

?

? ?

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)
Copy after login

?

如果(a, b, c)

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

?

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

?

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

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!