Skip to main content
14、索引下推

14、索引下推

概念

索引下推(index condition pushdown )简称 ICP,在 Mysql5.6 的版本上推出,用于优化查询。

SELECT * FROM users WHERE user_name LIKE '张%' AND user_age = 10;

Y-aong...About 1 minmysqlmysql索引下推