MySQL5.6子查询优化总结
2014-08-02
阅读 4 分钟
4k1、子查询合并不支持 mysql> explain select * from t1 where exists (select * from t2 where t2.a2>5) and exists (select * from t2 where t2.a2<10); +----+-------------+-------+------+---------------+------+---------+------+------+-------------+ | id | select_type | table | type | possible_ke...