目录
ParameterizedFilter::UpdateMultiIndex
摘要:
记录对exists子句进行剔除遍历的处理, 对比优化前后子查询耗时
执行的SQL语句:
/stonedb57/install/bin/mysql -D tpch -e " explain select o_orderpriority, count(*) as order_count from orders where o_orderdate >= date '1993-07-01' and o_orderdate < date '1993-07-01' + interval '3' month and exists ( select * from lineitem where l_orderkey = o_orderkey and l_commitdate < l_receiptdate ) group by o_orderpriority order by o_orderpriority ;"