1 Get the next row, first by reading the index tuple, and then by using the index tuple to locate and read the full table row. 2 Test the part of the WHERE condition that applies to this table. Accept or reject the row based on the test result. Index Condition Pushdown is used 1 ...
全稱Index Condition PushDown,mysql 5.6后支持的一種根據索引進行查詢優(yōu)化的操作。mysql數據庫會在取出所有數據的同時判斷是否進行where條件的過濾,將where的部分過濾放在存儲引擎層。mysql5.6之前如果執(zhí)行select * from table where name like '張%' and age=10這時候會先從name age的聯(lián)合索引中拿到name滿足張開頭的...