在MySQL中的explain中的using where和using index

little bottle
發布: 2019-04-18 15:48:51
轉載
4861 人瀏覽過

本篇文章的主要內容是關於在mysql資料庫explain中的using where和using index的使用,有興趣的朋友可以了解一下。

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

# 2. using index表示使用到了索引, 並且所取的資料完全在索引中就能拿到

explain select email_id from modify_passwd_log where email_id=670602;

##3. type是ref,where是空白:使用到了索引,但是查詢的資料有沒在索引中的,回表去拿資料了

explain select * from modify_passwd_log where email_id=670602;

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

#### ## 推薦課程:###mysql影片教學######

以上是在MySQL中的explain中的using where和using index的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:cnblogs.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板