明辉站/应用软件/内容

mysql 联合索引有什么好处? 联合索引的意义

应用软件2023-08-29 阅读
[摘要]mysql 里创建‘联合索引’的意义问题?因为什么需求,要创建‘联合索引’?最实际好处在于什么?如果是为了更快查询到数据,有单列索引不是Ok?为什么有‘联合索引’的存在?简单的说有两个主要原因:"一个顶三个"。建了一个(a,b,c)的复合索引,那么实际等于建了(a),(a,b)...

mysql 里创建‘联合索引’的意义

问题?
因为什么需求,要创建‘联合索引’?最实际好处在于什么?如果是为了更快查询到数据,有单列索引不是Ok?为什么有‘联合索引’的存在?

简单的说有两个主要原因:

如下的有a,b,c 三个key的table

create table test(
    a int,
    b int,
    c int,
);

如果我们
需要执行很多的类似于 select * from test where a=10, b>50, c>20
这类的组合查询 那么,我们可能需要创建 包含[a,b,c] 的联合索引,而单独的[a][b] [c]上的索引是不够的。(可以把一个索引想象成 sorted list).创建了 (a,b,c)的索引相当于 按照a,b,c 排序(排序规则是

  if(X.a>Y.a)
    return '>';
  else if(X.a<Y.a)
    return '<';
   else if(X.b>Y.b)
    return '>';
   else if (X.b<Y.b)
    return '<';
   else if (X.c>Y.c)
    return  '>'
   else if (X.c<Y.c)
    return  '<'
   esle
    return '=='
)

和分别 按a 排序 分别按b排序 分别按照c排序是不一样的。

其中 a b c 的顺序也很重要,有时可以是a c b,或者b c a等等。
如果创建 (a,b,c)的联合索引,查询效率如下:

  优: select * from test where a=10 and b>50
  差: select * from test where a>50

  优: select * from test order by a
  差: select * from test order by b
  差: select * from test order by c

  优: select * from test where a=10 order by a
  优: select * from test where a=10 order by b
  差: select * from test where a=10 order by c

  优: select * from test where a>10 order by a
  差: select * from test where a>10 order by b
  差: select * from test where a>10 order by c

  优: select * from test where a=10 and b=10 order by a
  优: select * from test where a=10 and b=10 order by b
  优: select * from test where a=10 and b=10 order by c

  优: select * from test where a=10 and b=10 order by a
  优: select * from test where a=10 and b>10 order by b
  差: select * from test where a=10 and b>10 order by c

下面用图示的方式来表示

mysql 联合索引有什么好处? 联合索引的意义

三 注意

在mysql中 若列是varchar 类型,请不要使用 int类型去访问
如下
zz_deals表中 product_id 是varchar类型

mysql> explain select * from zz_deals where  qq_shop_id = 64230 and product_id = '38605906667' ;+----+-------------+-------------+------+------------------------------+------------------------------+---------+-------------+------+-------------+  id   select_type   table         type   possible_keys                  key                            key_len   ref           rows   Extra        +----+-------------+-------------+------+------------------------------+------------------------------+---------+-------------+------+-------------+   1   SIMPLE        zz_deals   ref    by_product_id_and_qq_shop_id   by_product_id_and_qq_shop_id   156       const,const      1   Using where  +----+-------------+-------------+------+------------------------------+------------------------------+---------+-------------+------+-------------+1 row in set (0.00 sec)
mysql> explain select * from zz_deals where  qq_shop_id = 64230 and product_id = 38605906667 ;+----+-------------+-------------+------+------------------------------+------+---------+------+------+-------------+  id   select_type   table         type   possible_keys                  key    key_len   ref    rows   Extra        +----+-------------+-------------+------+------------------------------+------+---------+------+------+-------------+   1   SIMPLE        zz_deals   ALL    by_product_id_and_qq_shop_id   NULL   NULL      NULL     17   Using where  +----+-------------+-------------+------+------------------------------+------+---------+------+------+-------------+1 row in set (0.00 sec)

宣传语

历经两个半月的准备,三次大改版,十七次小改版。le1024终于要和大家见面了。

le1024每天推荐1~3段,有趣、有爱、有故事的视频。

为您工作、学习、生活之余增加一点快乐的感觉。

【相关推荐】

1. 免费mysql在线视频教程

2. MySQL最新手册教程

3. 数据库设计那些事

以上就是mysql 联合索引有什么好处? 联合索引的意义的详细内容,更多请关注php中文网其它相关文章!


学习教程快速掌握从入门到精通的SQL知识。

……

相关阅读