BEGIN; BEGIN EXPLAIN select p_brand, p_type, p_size, count(distinct ps_suppkey) as supplier_cnt from partsupp, part where p_partkey = ps_partkey and p_brand <> 'Brand#12' and p_type not like 'ECONOMY POLISHED%' and p_size in (11, 43, 16, 22, 50, 44, 31, 38) and ps_suppkey not in ( select s_suppkey from supplier where s_comment like '%Customer%Complaints%' ) group by p_brand, p_type, p_size order by supplier_cnt desc, p_brand, p_type, p_size; QUERY PLAN ------------------------------------------------------------------------------------------------------------------------------ Sort (cost=456046.91..456116.39 rows=27790 width=40) Sort Key: (count(DISTINCT partsupp.ps_suppkey)), part.p_brand, part.p_type, part.p_size -> GroupAggregate (cost=446344.53..453995.70 rows=27790 width=40) -> Sort (cost=446344.53..447819.19 rows=589861 width=40) Sort Key: part.p_brand, part.p_type, part.p_size -> Hash Join (cost=57949.70..389806.31 rows=589861 width=40) Hash Cond: (partsupp.ps_partkey = part.p_partkey) -> Seq Scan on partsupp (cost=8.48..270966.48 rows=4000000 width=8) Filter: (NOT (hashed SubPlan 1)) SubPlan 1 -> Index Scan using supplier_s_suppkey_idx_like on supplier (cost=0.00..8.45 rows=10 width=4) -> Hash (cost=54236.00..54236.00 rows=296418 width=40) -> Bitmap Heap Scan on part (cost=5731.17..54236.00 rows=296418 width=40) Recheck Cond: (p_size = ANY ('{11,43,16,22,50,44,31,38}'::integer[])) Filter: ((p_brand <> 'Brand#12'::bpchar) AND ((p_type)::text !~~ 'ECONOMY POLISHED%'::text)) -> Bitmap Index Scan on part_p_size_idx (cost=0.00..5657.07 rows=319313 width=0) Index Cond: (p_size = ANY ('{11,43,16,22,50,44,31,38}'::integer[])) (17 rows) COMMIT; COMMIT