溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mysql數(shù)據(jù)庫explain中using where和using index使用流程簡析

發(fā)布時間:2020-04-27 14:11:01 來源:億速云 閱讀:2373 作者:三月 欄目:MySQL數(shù)據(jù)庫

本文主要給大家介紹mysql數(shù)據(jù)庫explain中using where和using index使用流程簡析,其所涉及的東西,從理論知識來獲悉,有很多書籍、文獻可供大家參考,從現(xiàn)實意義角度出發(fā),億速云累計多年的實踐經(jīng)驗可分享給大家。                                                            

1. 查看表中的所有索引 show index from modify_passwd_log;  有兩個 一個是id的主鍵索引 , 一個是email_id的普通索引

mysql數(shù)據(jù)庫explain中using where和using index使用流程簡析

2. using index表示 使用到了索引 , 并且所取的數(shù)據(jù)完全在索引中就能拿到

explain select email_id from modify_passwd_log where email_id=670602;

mysql數(shù)據(jù)庫explain中using where和using index使用流程簡析

3. type是ref,where是空白:使用到了索引,但是查詢的數(shù)據(jù)有沒在索引中的,回表去拿數(shù)據(jù)了

explain select * from modify_passwd_log where email_id=670602;

mysql數(shù)據(jù)庫explain中using where和using index使用流程簡析

4. type是ref , where是 using where ,表示使用到了索引 , 但是也進行了where過濾

mysql數(shù)據(jù)庫explain中using where和using index使用流程簡析

更多相關(guān)資訊:

MySQL數(shù)據(jù)庫中執(zhí)行extra中的using index 和 using where 的區(qū)別

詳解MySQL查詢優(yōu)化中的Using where 和 Using index概念


向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI