mysql索引技巧 MySql 索引的一些技巧

2021-10-20 23:26:25 字數 1577 閱讀 7563

一、多表子從查詢

多表查詢時,子查詢可能會出現觸發不了索引的情況

select * from test_1 where id in (select id from test_publish where id in (38,69));

上面語句,test_1和test_public都where了主鍵id,常理來說這個查詢不存在問題,事實上主語句並不會觸發索引,只有子語句觸發了索引

idselect_type

table

type

possible_keys

keykey_len

refrows

extra

******

test_1

allusing where

******

test_publish

eq_ref

primary

primary

test.test_1.id

using where

這個時候可以把語句分拆成兩個單獨的語句去查詢,或者關聯表

select * from test_1 left join test_publish on test_1.id = test_publish.id where test_publish.id in (38,69);

idselect_type

table

type

possible_keys

keykey_len

refrows

extra

******

test_1

range

primary

primary

using where

******

test_publish

eq_ref

primary

primary

test.test_1.id

using where

二、手動強制索引和忽略索引

1、mysql強制使用索引:force index(索引名或者主鍵pri)

例如:select * from table force index(pri) limit 2;(強制使用主鍵)

select * from table force index(ziduan1_index) limit 2;(強制使用索引"ziduan1_index")

select * from table force index(pri,ziduan1_index) limit 2;(強制使用索引"pri和ziduan1_index")

2、mysql禁止某個索引:ignore index(索引名或者主鍵pri)

例如:select * from table ignore index(pri) limit 2;(禁止使用主鍵)

select * from table ignore index(ziduan1_index) limit 2;(禁止使用索引"ziduan1_index")

select * from table ignore index(pri,ziduan1_index) limit 2;(禁止使用索引"pri,ziduan1_index")

mysql 雜湊索引 MySQL索引之雜湊索引

雜湊索引 hash index 建立在雜湊表的基礎上,它只對使用了索引中的每一列的精確查詢有用。對於每一行,儲存引擎計算出了被索引的雜湊碼 hash code 它是乙個較小的值,並且有可能和其他行的雜湊碼不同。它把雜湊碼儲存在索引中,並且儲存了乙個指向雜湊表中的每一行的指標。在mysql中,只有me...

mysql主鍵索引 MySQL索引之主鍵索引

在mysql裡,主鍵索引和輔助索引分別是什麼意思,有什麼區別?上次的分享我們介紹了聚集索引和非聚集索引的區別,本次我們繼續介紹主鍵索引和輔助索引的區別。1 主鍵索引 主鍵索引,簡稱主鍵,原文是primary key,由乙個或多個列組成,用於唯一性標識資料表中的某一條記錄。乙個表可以沒有主鍵,但最多只...

mysql聚集索引 MySQL索引之聚集索引介紹

在mysql裡,聚集索引和非聚集索引分別是什麼意思,有什麼區別?在mysql中,innodb引擎表是 聚集 索引組織表 clustered index organize table 而myisam引擎表則是堆組織表 heap organize table 也有人把聚集索引稱為聚簇索引。當然了,聚集索...