索引分析

来源:http://www.cnblogs.com/Onlywjy/archive/2017/08/10/7341356.html
-Advertisement-
Play Games

索引分析 單表 創建表並插入數據 查詢語句(查詢category_id為1 且comments大於1的情況下view最多的author_id) sql分析 結果:type為All(變數全表)即最壞的情況,Extra里還出現了using filesor(文件排序)即使用一個外部的索引排序情況也是最壞所 ...


索引分析

單表

創建表並插入數據

create table if not exists article(
  id int(10) unsigned not null primary key auto_increment,
  author_id int(10) unsigned not null,
  category_id int(10) unsigned not null,
  views int(10) unsigned not null,
  comments int(10) unsigned not null,
  title varbinary(255) not null,
  content text not null
);
insert into article(author_id,category_id,views,comments,title,content)
values(1,1,1,1,'1','1'),(2,2,2,2,'2','2'),(1,1,3,3,'3','3');

查詢語句(查詢category_id為1 且comments大於1的情況下view最多的author_id)

select id,author_id from article where category_id=1 and comments>1 order by views
desc limit 1;


sql分析

結果:type為All(變數全表)即最壞的情況,Extra里還出現了using filesor(文件排序)即使用一個外部的索引排序情況也是最壞所以必須優化。

新建索引

建立索引
create index idx_article_ccv on article(category_id,comments,views);
查看索引
show index from article;

sql分析

結果:Extra依舊出現了using filesor。

刪除索引重建

drop index idx_article_ccv on article;
create index idx_article_cv on article(category_id,views);
show index article;

sql分析

原因:按照BTree索引的工作原理,先排序category_id,遇到相同的category_id
則再排序comments,如果遇到相同的comments則再排序views.
當comments欄位在聯合索引里處於中間位置時,
因comments>1條件是一個範圍值(range),
mysql 無法利用索引再對後面的views部分進行索引,即range類型查詢欄位後面的索引無效。

雙表

創建表並插入數據

create table if not exists class(
  id int(10) unsigned not null auto_increment,
  card int(10) unsigned not null,
  primary key (id)
);
create table if not exists book(
  bookid int(10) unsigned not null auto_increment,
  card int(10) unsigned not null,
  primary key(bookid)
);
insert into class(card)values(FLOOR(1+(RAND()*20)));
insert into class(card)values(FLOOR(1+(RAND()*20)));
insert into class(card)values(FLOOR(1+(RAND()*20)));
......
insert into book(card)values(FLOOR(1+(RAND()*20)));
insert into book(card)values(FLOOR(1+(RAND()*20)));
......

查詢語句

select * from class left join book on class.card=book.card;

sql分析

結果:type有ALL添加索引優化。

右表添加索引

alter table book add index y(card);

sql分析

結果:type變為了ref。

左表添加索引

drop index y on book;
alter table class add index y(card);

sql分析

結果:可以看到type變為了ref,rows也變了優化比較明顯.。
結論:左連接的時候left join 條件用於確定如何從右表搜索行,左表一定都有這是由左連接特性決定的,所以應該在右邊建立索引;反之右連接應該在左表建立索引。

三表

創建表並插入數據

create table if not exists class(
  id int(10) unsigned not null auto_increment,
  card int(10) unsigned not null,
  primary key (id)
);
create table if not exists book(
  bookid int(10) unsigned not null auto_increment,
  card int(10) unsigned not null,
  primary key(bookid)
);
create table if not exists phone(
  phoneid int(10) unsigned not null auto_increment,
  card int(10) unsigned not null,
  primary key (phoneid)
)
insert into class(card)values(FLOOR(1+(RAND()*20)));
insert into class(card)values(FLOOR(1+(RAND()*20)));
......
insert into book(card)values(FLOOR(1+(RAND()*20)));
insert into book(card)values(FLOOR(1+(RAND()*20)));
......
insert into phone(card)values(FLOOR(1+(RAND()*20)));
insert into phone(card)values(FLOOR(1+(RAND()*20)));

......

查詢語句

select * from class left join book on class.card
=book.card left join phone on book.card=phone.card;

sql分析

結果:type全為ALL,需要優化。
建立索引

alter table phone add index z(card);
alter table book add index y(card)

sql分析

結果:後2行的type變為ref且總rows優化很好,效果不錯。
結論:索引最好應設置在需要經常查詢的欄位中。


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 昨天總結的JavaScript中的數組Array方法 數組的迭代方法 ES5中為數組定義了5個迭代方法。每個方法都要接收兩個參數:要在每一項上面運行的函數和(可選的)運行該函數的作用域對象 影響this的值。 傳入方法中的函數會介紹三個參數:1.數組項的值 2. 該項在數組的中位值 3. 數組對象本 ...
  • 最近使用AndroidStudio的最新ndk編譯方式cMake來編譯底層cpp文件,由於之前沒有接觸過cMake語法,先附上官方學習文檔地址:https://developer.android.com/ndk/guides/cmake.html,以及友情中文翻譯網址:https://www.zyb ...
  • 連載上一篇http://www.cnblogs.com/hackfun/p/7327320.html (D) 如何載入訪問.so庫 在前一篇博客http://www.cnblogs.com/hackfun/p/7327320.html中,知道如何生成了一個HAL的.so庫,在這裡將分析如何載入這個H ...
  • 在mac上的ionic3項目打包成蘋果app,系統版本是10.3.3 . 當調用相機的時候出現閃退情況,這是調試出現的問題: This app has crashed because it attempted to access privacy-sensitive data without a us ...
  • 在mac上,cordova打包ionic項目為蘋果手機app出現 這個問題:ERROR Internal navigation rejected - <allow-navigation> not set for url='about:blank' 解決方案: 出現這個錯誤的原因是因為沒有設置白名單打 ...
  • iOS精選源碼 自己維護的框架, 超級多功能 圖片選擇SDK:支持多選,相冊選擇,預覽,網路圖預覽 一款可以簡單實現長按拖拽重排的 UICellCollectionView Cell框... 動畫引擎 FXAnimationEngine MJCIOS/MJCSegmentInterface(分段界面 ...
  • 一,效果圖。 二,代碼。 ViewController.m ...
  • 當遇到資料庫占用空間很大的情況下,可以用以下語句查找大數據量的表 運行結果 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...