You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Mysql 5.6引入了index condition pushdown的优化,意思是对于where条件中有使用到联合索引的地方,会先将判断条件下移到索引中,判断是否需要回表扫描,如果需要,则再回表扫描。比如select * from user where name like '张%' and age =8,在扫描name时,同时判断age
0 commit comments