BEGIN; BEGIN EXPLAIN select o_orderpriority, count(*) as order_count from orders where o_orderdate >= date '1995-12-01' and o_orderdate < cast(date '1995-12-01' + interval '3 month' as date) and exists ( select * from lineitem where l_orderkey = o_orderkey and l_commitdate < l_receiptdate ) group by o_orderpriority order by o_orderpriority; QUERY PLAN --------------------------------------------------------------------------------------------------------------------------- Sort (cost=1122484.95..1122484.96 rows=1 width=16) Sort Key: orders.o_orderpriority -> HashAggregate (cost=1122484.93..1122484.94 rows=1 width=16) Group Key: orders.o_orderpriority -> Nested Loop Semi Join (cost=11897.44..1121745.93 rows=147800 width=16) -> Bitmap Heap Scan on orders (cost=11896.87..273831.22 rows=560823 width=20) Recheck Cond: ((o_orderdate >= '1995-12-01'::date) AND (o_orderdate < '1996-03-01'::date)) -> Bitmap Index Scan on orders_o_orderdate_o_orderkey_idx (cost=0.00..11756.66 rows=560823 width=0) Index Cond: ((o_orderdate >= '1995-12-01'::date) AND (o_orderdate < '1996-03-01'::date)) -> Index Scan using lineitem_l_orderkey_idx_part1 on lineitem (cost=0.56..4.59 rows=5 width=4) Index Cond: (l_orderkey = orders.o_orderkey) Planning time: 3.435 ms (12 rows) COMMIT; COMMIT