主頁 > 知識(shí)庫 > Mysql實(shí)驗(yàn)之使用explain分析索引的走向

Mysql實(shí)驗(yàn)之使用explain分析索引的走向

熱門標(biāo)簽:西安400電話在哪里辦理 上海智能外呼系統(tǒng)需要多少錢 凱立德科技館地圖標(biāo)注 做地圖標(biāo)注都需要什么工具 甘孜電話機(jī)器人廠家 銀川電銷外呼系統(tǒng)定制 中科嘉智人工智能電銷機(jī)器人 電銷機(jī)器人好品牌門薩維l 哈爾濱crm外呼系統(tǒng)價(jià)格

概述

索引是mysql的必須要掌握的技能,同時(shí)也是提供mysql查詢效率的手段。通過以下的一個(gè)實(shí)驗(yàn)可以理解?mysql的索引規(guī)則,同時(shí)也可以不斷的來優(yōu)化sql語句

實(shí)驗(yàn)?zāi)康?/strong>

本實(shí)驗(yàn)是為了驗(yàn)證組合索引的 最左原則

說明

此實(shí)驗(yàn)只是為了驗(yàn)證實(shí)際使用索引的結(jié)果,請(qǐng)忽略設(shè)計(jì)的合理性

準(zhǔn)備工作

1、用戶表一張,有uid ,user_name,real_name ,eamil等字段,詳細(xì)見建表語句
2、在user_name字段下增加一個(gè)簡(jiǎn)單索引user_name,在email,mobile,age三個(gè)字段下增加索引complex_index
3、表引擎使用MyISAM,增加
4、準(zhǔn)備97000條數(shù)據(jù)(具體的可以根據(jù)實(shí)際情況來定數(shù)據(jù)量,這里準(zhǔn)備的是97000+)
5、實(shí)驗(yàn)工具Navcat

建表語句

DROP TABLE IF EXISTS `qz_users`;
CREATE TABLE `qz_users` (
 `uid` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '用戶的 UID',
 `user_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '用戶名',
 `real_name` varchar(128) CHARACTER SET utf8 DEFAULT NULL COMMENT '用戶姓名',
 `email` varchar(255) CHARACTER SET utf8 DEFAULT NULL COMMENT 'EMAIL',
 `mobile` varchar(16) CHARACTER SET utf8 DEFAULT NULL COMMENT '用戶手機(jī)',
 `password` varchar(32) CHARACTER SET utf8 DEFAULT NULL COMMENT '用戶密碼',
 `salt` varchar(16) CHARACTER SET utf8 DEFAULT NULL COMMENT '用戶附加混淆碼',
 `avatar_file` varchar(128) CHARACTER SET utf8 DEFAULT NULL COMMENT '頭像文件',
 `sex` tinyint(1) DEFAULT NULL COMMENT '性別',
 `birthday` int(10) DEFAULT NULL COMMENT '生日',
 PRIMARY KEY (`uid`),
 KEY `user_name` (`user_name`(250)),
 KEY `complex_index` (`email`,`mobile`,`sex`)
) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

準(zhǔn)備的查詢語句

explain select * from qz_users where user_name = "ryanhe";
explain select * from qz_users where email = "x";
explain select * from qz_users where email = "x" and mobile = "x" and sex=1;
explain select * from qz_users where email = "x" and mobile = "x";
explain select * from qz_users where email = "x" and sex = "x";
explain select * from qz_users where sex = "x" and mobile = "x";
explain select * from qz_users where mobile = "x" and sex = "0";

結(jié)果分析

使用 user_name 條件

explain select * from qz_users where user_name= "x";

結(jié)果

分析

是否走索引 索引名稱 掃描記錄數(shù)
user_name 1

使用 email 條件

explain select * from qz_users where email = "x";

結(jié)果

分析

是否走索引 索引名稱 掃描記錄數(shù)
complex_index 7

使用 email + mobile + sex條件

explain select * from qz_users where email = "x" and mobile = "x" and sex=1;

結(jié)果

分析

是否走索引 索引名稱 掃描記錄數(shù)
complex_index 1

使用 email + mobile 條件

explain select * from qz_users where email = "x" and mobile = "x";

結(jié)果

分析

是否走索引 索引名稱 掃描記錄數(shù)
complex_index 7

使用 email + sex 條件

explain select * from qz_users where email = "x" and sex = "x";

結(jié)果

分析

][3] 是否走索引 索引名稱 掃描記錄數(shù)
complex_index 7

使用 sex + mobile 條件

explain select * from qz_users where sex = "x" and mobile = "x";

結(jié)果

分析

是否走索引 索引名稱 掃描記錄數(shù)
97185

使用 mobile+ sex 條件

explain select * from qz_users where mobile = "18602199680" and sex = "0";

結(jié)果

分析

是否走索引 索引名稱 掃描記錄數(shù)
97185

結(jié)論

通過上面的結(jié)果可以得知,當(dāng)設(shè)置了組合索引之后,合理的使用查詢條件的順序是可以避免sql語句的慢查詢的

您可能感興趣的文章:
  • MySQL性能分析及explain的使用說明
  • mysql之explain使用詳解(分析索引)
  • MySql中如何使用 explain 查詢 SQL 的執(zhí)行計(jì)劃
  • mysql開啟慢查詢(EXPLAIN SQL語句使用介紹)
  • mysql explain的用法(使用explain優(yōu)化查詢語句)
  • mysql優(yōu)化利器之explain使用介紹
  • MySQL性能優(yōu)化神器Explain的基本使用分析
  • Mysql Explain命令的使用與分析
  • MySQL Explain使用詳解
  • MySQL中explain語句的基本使用教程

標(biāo)簽:安康 四川 浙江 平頂山 濮陽 那曲 安徽 山南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Mysql實(shí)驗(yàn)之使用explain分析索引的走向》,本文關(guān)鍵詞  Mysql,實(shí)驗(yàn),之,使用,explain,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Mysql實(shí)驗(yàn)之使用explain分析索引的走向》相關(guān)的同類信息!
  • 本頁收集關(guān)于Mysql實(shí)驗(yàn)之使用explain分析索引的走向的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章