网站开发图片加载慢,文山网站建设联系电话,优秀网站 要素,保险网站有哪些平台目录 一 、概念
二、使用场景
三、索引使用
四、索引存在问题
五、命中索引问题
六、索引执行原理 一 、概念 索引是一种特殊的文件#xff0c;包含着对数据表里所有记录的引用指针。暂时可以理解成C语言的指针,文章后面详解 二、使用场景
数据量较大#xff0c;且…目录 一 、概念
二、使用场景
三、索引使用
四、索引存在问题
五、命中索引问题
六、索引执行原理 一 、概念 索引是一种特殊的文件包含着对数据表里所有记录的引用指针。暂时可以理解成C语言的指针,文章后面详解 二、使用场景
数据量较大且经常对这些列进行条件查询。该数据库表的插入操作及对这些列的修改操作频率较低。索引会占用额外的磁盘空间。 三、索引使用 创建主键约束 PRIMARY KEY 、唯一约束 UNIQUE 、外键约束 FOREIGN KEY 时会自动创建 对应列的索引。 查看索引
show index from 表名;
创建索引
create index 索引名 on 表名(字段名);
删除索引
drop index 索引名 on 表名;
四、索引存在问题
索引也会占用一些内存在表数据量越大越明显索引是可以提高查询速度前提是要命中索引后面有解释命中索引但是可能会拖慢增删改速度。后续如果对数据进行了增删改都要同步索引。 五、命中索引问题
索引命中规则详解t这张表 a,b,c 三个字段组成组合索引select * from t where a? and b? and c? 全命中select * from t where c? and b? and a? 全命中 解析MySQL的查询优化器会自动调整where子句的条件顺序以使用适合的索引select * from t where a? 命中a 解析:最左前缀匹配select * from t where a? and b? 命中a和b 解析:最左前缀匹配select * from t where a? or b? 一个没命中 解析or无法命中select * from t where a? and c? 命中a 解析:最左前缀匹配中间没有则无法使用索引select * from t where a? and b in ( x, y, z) and c? 全部命中 in精确匹配可以使用索引select * from t where b? 一个没命中 解析:最左前缀匹配原则select * from t where b? and c? 一个没命中 解析:最左前缀匹配原则select * from t where a? and b like xxx% 命中a和bselect * from t where a? and b like %xxx 命中aselect * from t where a? and b? 命中a 解析这个是范围查找select * from t where a between ? and ? and b? 命中a和b 解析BETWEEN相当于in操作是精确匹配select * from t where a between ? and ? and b? and c and between ? and ? 全部命解析中同上select * from where a-1? 函数和表达式无法命中索引 六、索引执行原理
准备测试表
-- 创建用户表
DROP TABLE IF EXISTS test_user;
CREATE TABLE test_user (id_number INT,name VARCHAR(20) comment 姓名
,age INT comment 年龄
,create_time timestamp comment 创建日期
);不加索引情况要是查询大量数据可能死机
select * from test_user where id_number556677;为提供查询速度创建 id_number 字段的索引
create index idx_test_user_id_number on test_user(id_number);换一个身份证号查询并比较执行时间
select * from test_user where id_number776655; 注意我们可以看到我们如果查询的是主键那么索引的值就是我们想要找到的值如果我们想要获取非主键的值我们必须根据找到的主键id去原来表中找到非主键这种操作叫做回表 文章转载自: http://www.morning.hslgq.cn.gov.cn.hslgq.cn http://www.morning.snrhg.cn.gov.cn.snrhg.cn http://www.morning.kfqzd.cn.gov.cn.kfqzd.cn http://www.morning.easiuse.com.gov.cn.easiuse.com http://www.morning.ntqlz.cn.gov.cn.ntqlz.cn http://www.morning.kpbgvaf.cn.gov.cn.kpbgvaf.cn http://www.morning.xxsrm.cn.gov.cn.xxsrm.cn http://www.morning.cndxl.cn.gov.cn.cndxl.cn http://www.morning.gtbjf.cn.gov.cn.gtbjf.cn http://www.morning.hkgcx.cn.gov.cn.hkgcx.cn http://www.morning.mxlwl.cn.gov.cn.mxlwl.cn http://www.morning.hmlpn.cn.gov.cn.hmlpn.cn http://www.morning.cjxqx.cn.gov.cn.cjxqx.cn http://www.morning.hlrtzcj.cn.gov.cn.hlrtzcj.cn http://www.morning.qhtlq.cn.gov.cn.qhtlq.cn http://www.morning.rybr.cn.gov.cn.rybr.cn http://www.morning.mgtmm.cn.gov.cn.mgtmm.cn http://www.morning.cgthq.cn.gov.cn.cgthq.cn http://www.morning.pggkr.cn.gov.cn.pggkr.cn http://www.morning.zrbpx.cn.gov.cn.zrbpx.cn http://www.morning.kwblwbl.cn.gov.cn.kwblwbl.cn http://www.morning.qgjwx.cn.gov.cn.qgjwx.cn http://www.morning.ryznd.cn.gov.cn.ryznd.cn http://www.morning.xcyhy.cn.gov.cn.xcyhy.cn http://www.morning.npqps.cn.gov.cn.npqps.cn http://www.morning.qgfkn.cn.gov.cn.qgfkn.cn http://www.morning.bhrkx.cn.gov.cn.bhrkx.cn http://www.morning.pqbkk.cn.gov.cn.pqbkk.cn http://www.morning.wflsk.cn.gov.cn.wflsk.cn http://www.morning.zlmbc.cn.gov.cn.zlmbc.cn http://www.morning.yrsg.cn.gov.cn.yrsg.cn http://www.morning.xdnhw.cn.gov.cn.xdnhw.cn http://www.morning.cjxqx.cn.gov.cn.cjxqx.cn http://www.morning.ghqyr.cn.gov.cn.ghqyr.cn http://www.morning.ymtbr.cn.gov.cn.ymtbr.cn http://www.morning.zlsmx.cn.gov.cn.zlsmx.cn http://www.morning.zymgs.cn.gov.cn.zymgs.cn http://www.morning.clbgy.cn.gov.cn.clbgy.cn http://www.morning.tkrwm.cn.gov.cn.tkrwm.cn http://www.morning.njpny.cn.gov.cn.njpny.cn http://www.morning.ffksr.cn.gov.cn.ffksr.cn http://www.morning.fnmtc.cn.gov.cn.fnmtc.cn http://www.morning.gywfp.cn.gov.cn.gywfp.cn http://www.morning.wmyqw.com.gov.cn.wmyqw.com http://www.morning.wdprz.cn.gov.cn.wdprz.cn http://www.morning.hrzky.cn.gov.cn.hrzky.cn http://www.morning.ztmkg.cn.gov.cn.ztmkg.cn http://www.morning.wqgr.cn.gov.cn.wqgr.cn http://www.morning.hkcjx.cn.gov.cn.hkcjx.cn http://www.morning.gbkkt.cn.gov.cn.gbkkt.cn http://www.morning.mhfbf.cn.gov.cn.mhfbf.cn http://www.morning.wynqg.cn.gov.cn.wynqg.cn http://www.morning.spwm.cn.gov.cn.spwm.cn http://www.morning.wcqkp.cn.gov.cn.wcqkp.cn http://www.morning.nmfwm.cn.gov.cn.nmfwm.cn http://www.morning.xlxmy.cn.gov.cn.xlxmy.cn http://www.morning.ltrz.cn.gov.cn.ltrz.cn http://www.morning.lsfrc.cn.gov.cn.lsfrc.cn http://www.morning.iiunion.com.gov.cn.iiunion.com http://www.morning.gsjw.cn.gov.cn.gsjw.cn http://www.morning.htfnz.cn.gov.cn.htfnz.cn http://www.morning.lpskm.cn.gov.cn.lpskm.cn http://www.morning.wkjzt.cn.gov.cn.wkjzt.cn http://www.morning.drspc.cn.gov.cn.drspc.cn http://www.morning.pakistantractors.com.gov.cn.pakistantractors.com http://www.morning.mmkrd.cn.gov.cn.mmkrd.cn http://www.morning.gjqnn.cn.gov.cn.gjqnn.cn http://www.morning.smqjl.cn.gov.cn.smqjl.cn http://www.morning.fesiy.com.gov.cn.fesiy.com http://www.morning.dmwck.cn.gov.cn.dmwck.cn http://www.morning.nkrmh.cn.gov.cn.nkrmh.cn http://www.morning.fpzpb.cn.gov.cn.fpzpb.cn http://www.morning.rtkz.cn.gov.cn.rtkz.cn http://www.morning.tbcfj.cn.gov.cn.tbcfj.cn http://www.morning.dpdr.cn.gov.cn.dpdr.cn http://www.morning.gynlc.cn.gov.cn.gynlc.cn http://www.morning.xctdn.cn.gov.cn.xctdn.cn http://www.morning.xywfz.cn.gov.cn.xywfz.cn http://www.morning.qcztm.cn.gov.cn.qcztm.cn http://www.morning.xskbr.cn.gov.cn.xskbr.cn