一旦創建索引,select 查詢語句的where條件要儘可能符合最佳左前綴的原則,如若能作到全值匹配最好。mysql
索引優化的第一個前提就是建好索引,第二個就是避免索引失效sql
索引失效的場景網絡
1.若是索引了多列,要遵照最左前綴法則。指的是查詢從索引的最左前列開始而且不跳過索引中的列
2.不在索引列上作任何操做(計算、函數、(自動or手動)類型轉換),會致使索引失效而轉向全表掃描
3.存儲引擎不能使用索引中範圍條件右邊的列函數
4.mysql 在使用不等於(!= 或者<>)的時候沒法使用索引會致使全表掃描
5.is null ,is not null 也沒法使用索引
6.like以通配符開頭('%abc...') mysql索引失效會變成全表掃描的操做
7.少用or,用它來鏈接時會索引失效mysql索引
小總結:優化
假設index(a,b,c)code
Where語句 | 索引是否被使用 |
---|---|
where a = 3 | Y,使用到a |
where a = 3 and b = 5 | Y,使用到a,b |
where a = 3 and b = 5 and c = 4 | Y,使用到a,b,c |
where b = 3 或者 where b = 3 and c = 4 或者 where c = 4 | N |
where a = 3 and c = 5 | 使用到a, 可是c不能夠,b中間斷了 |
where a = 3 and b > 4 and c = 5 | 使用到a和b, c不能用在範圍以後,b斷了 |
where a = 3 and b like 'kk%' and c = 4 | Y,使用到a,b,c |
where a = 3 and b like '%kk' and c = 4 | Y,只用到a |
where a = 3 and b like '%kk%' and c = 4 | Y,只用到a |
where a = 3 and b like 'k%kk%' and c = 4 | Y,使用到a,b,c |
是什麼:是mysql提供能夠用來分析當前會話中語句執行的資源消耗狀況。能夠用於SQL的調優的測量
官網介紹:show profileserver
默認狀況下,參數處於關閉狀態,開啓後默認保存最近15次的運行結果htm
1.是否支持,看看當前的mysql版本是否支持
Show variables like 'profiling';
2.開啓功能,默認是關閉,使用前須要開啓
set profiling=on;
3.運行SQL
select * from emp group by id%10 limit 150000; select * from emp group by id%20 order by 5
4.查看結果 show profile;
5.診斷SQL,show profile cpu,block io for query 上一步前面的問題SQL數字號碼;
Status | 建議 |
---|---|
System lock | 確認是因爲哪一個鎖引發的,一般是由於MySQL或InnoDB內核級的鎖引發的建議:若是耗時較大再關注便可,通常狀況下都還好 |
Sending data | 從server端發送數據到客戶端,也有多是接收存儲引擎層返回的數據,再發送給客戶端,數據量很大時尤爲常常能看見備註:Sending Data不是網絡發送,是從硬盤讀取,發送到網絡是Writing to net建議:經過索引或加上LIMIT,減小須要掃描而且發送給客戶端的數據量 |
Sorting result | 正在對結果進行排序,相似Creating sort index,不過是正常表,而不是在內存表中進行排序建議:建立適當的索引 |
Table lock | 表級鎖,沒什麼好說的,要麼是由於MyISAM引擎表級鎖,要麼是其餘狀況顯式鎖表 |
create sort index | 當前的SELECT中須要用到臨時表在進行ORDER BY排序建議:建立適當的索引 |
checking query cache for querychecking privileges on cachedsending cached result to clienstoring result in query cache | 和query cache相關的狀態,已經屢次強烈建議關閉 |
6. 平常開發須要注意的結論
示例:剖析 select * from emp group by id%20 order by 5
由剖析報告看出,其中 Copying to tmp table 步驟花費了大量的時間,因此這條SQL應該優化了。
注:該文的SQL只是爲了便利的梳理知識點使用,不須要關心這條SQL爲何這樣寫,瞭解以上知識的使用方法就能夠啦