BEGIN; BEGIN EXPLAIN select c_name, c_custkey, o_orderkey, o_orderdate, o_totalprice, sum(l_quantity) from customer, orders, lineitem where o_orderkey in ( select l_orderkey from lineitem group by l_orderkey having sum(l_quantity) > 315 ) and c_custkey = o_custkey and o_orderkey = l_orderkey group by c_name, c_custkey, o_orderkey, o_orderdate, o_totalprice order by o_totalprice desc, o_orderdate LIMIT 100; QUERY PLAN -------------------------------------------------------------------------------------------------------------------------------------- Limit (cost=10146181.86..10146184.61 rows=100 width=39) -> GroupAggregate (cost=10146181.86..10970992.66 rows=29993120 width=39) Group Key: orders.o_totalprice, orders.o_orderdate, customer.c_name, customer.c_custkey, orders.o_orderkey -> Sort (cost=10146181.86..10221164.66 rows=29993120 width=39) Sort Key: orders.o_totalprice, orders.o_orderdate, customer.c_name, customer.c_custkey, orders.o_orderkey -> Hash Join (cost=2886151.45..5601190.05 rows=29993120 width=39) Hash Cond: (lineitem.l_orderkey = orders.o_orderkey) -> Seq Scan on lineitem (cost=0.00..1665279.40 rows=59986240 width=8) -> Hash (cost=2792401.45..2792401.45 rows=7500000 width=39) -> Hash Join (cost=2179017.15..2792401.45 rows=7500000 width=39) Hash Cond: (orders.o_custkey = customer.c_custkey) -> Hash Join (cost=2109989.15..2610873.45 rows=7500000 width=20) Hash Cond: (orders.o_orderkey = lineitem_1.l_orderkey) -> Seq Scan on orders (cost=0.00..403269.00 rows=15000000 width=16) -> Hash (cost=2058282.53..2058282.53 rows=4136530 width=4) -> HashAggregate (cost=1965210.60..2016917.23 rows=4136530 width=8) Group Key: lineitem_1.l_orderkey Filter: (sum(lineitem_1.l_quantity) > 315::double precision) -> Seq Scan on lineitem lineitem_1 (cost=0.00..1665279.40 rows=59986240 width=8) -> Hash (cost=50278.00..50278.00 rows=1500000 width=23) -> Seq Scan on customer (cost=0.00..50278.00 rows=1500000 width=23) Planning time: 5.649 ms (22 rows) COMMIT; COMMIT