zoukankan      html  css  js  c++  java
  • 索引命中规则详解

    索引命中规则详解:

    t这张表 a,b,c 三个字段组成组合索引

    1.  索引命中规则详解:
    2.  t这张表 a,b,c 三个字段组成组合索引
    3.  select * from t where a=? and b=? and c=? 全命中
    4.  select * from t where c=? and b=? and a=? 全命中 解析MySQL的查询优化器会自动调整where子句的条件顺序以使用适合的索引
    5.  select * from t where a=? 命中a 解析:最左前缀匹配
    6.  select * from t where a=? and b=? 命中a和b 解析:最左前缀匹配
    7.  select * from t where a=? or b=? 一个没命中 解析or无法命中
    8.  select * from t where a=? and c=? 命中a 解析:最左前缀匹配,中间没有则无法使用索引
    9.  select * from t where a=? and b in ( x, y, z) and c=? 全部命中 in精确匹配可以使用索引
    10.  select * from t where b=? 一个没命中 解析:最左前缀匹配原则
    11.  select * from t where b=? and c=? 一个没命中 解析:最左前缀匹配原则
    12.  select * from t where a=? and b like 'xxx%' 命中a
    13.  select * from t where a=? and b like '%xxx' 命中a和b
    14.   select * from t where a<? and b=? 命中a 解析这个是范围查找
    15.  select * from t where a between ? and ? and b=? 命中a和b 解析BETWEEN相当于in操作是精确匹配
    16.  select * from t where a between ? and ? and b=? and c and between ? and ? 全部命解析中同上
    17.  select * from where a-1=? 函数和表达式无法命中索引
  • 相关阅读:
    峰Spring4学习(1)HelloWorld
    小峰mybatis(5)mybatis使用注解配置sql映射器--动态sql
    前端实现某一列不能重复不能且不能为空
    jquery:给正则表达式添加变量
    css:width height
    让heigh:100%起作用
    jquery:选择器 过滤器
    vs:如何添加.dll文件
    jq:正则表达式
    css:html() text() val()
  • 原文地址:https://www.cnblogs.com/Wl55387370/p/13601894.html
Copyright © 2011-2022 走看看