BEGIN; BEGIN create or replace view revenue1 (supplier_no, total_revenue) as select l_suppkey, sum(l_extendedprice * (1 - l_discount)) from lineitem where l_shipdate >= '1995-03-01' and l_shipdate < date'1995-03-01' + interval '90 days' group by l_suppkey; CREATE VIEW EXPLAIN select s_suppkey, s_name, s_address, s_phone, total_revenue from supplier, revenue1 where s_suppkey = supplier_no and total_revenue = ( select max(total_revenue) from revenue1 ) order by s_suppkey; QUERY PLAN -------------------------------------------------------------------------------------------------------------------------------------------------------- Merge Join (cost=2360651.31..2365749.59 rows=3788 width=79) Merge Cond: (supplier.s_suppkey = revenue1.supplier_no) InitPlan 1 (returns $0) -> Aggregate (cost=1171682.50..1171682.51 rows=1 width=8) -> HashAggregate (cost=1171597.27..1171635.15 rows=3788 width=12) -> Bitmap Heap Scan on lineitem (cost=48251.74..1148849.06 rows=2274821 width=12) Recheck Cond: ((l_shipdate >= '1995-03-01'::date) AND (l_shipdate < '1995-05-30 00:00:00'::timestamp without time zone)) -> Bitmap Index Scan on lineitem_l_shipdate_l_suppkey__idx (cost=0.00..47683.04 rows=2274821 width=0) Index Cond: ((l_shipdate >= '1995-03-01'::date) AND (l_shipdate < '1995-05-30 00:00:00'::timestamp without time zone)) -> Index Scan using pk_supplier on supplier (cost=0.00..4791.46 rows=100000 width=71) -> Sort (cost=1188968.80..1188978.27 rows=3788 width=12) Sort Key: revenue1.supplier_no -> Subquery Scan on revenue1 (cost=1188658.43..1188743.66 rows=3788 width=12) -> HashAggregate (cost=1188658.43..1188705.78 rows=3788 width=12) Filter: (sum((public.lineitem.l_extendedprice * (1::double precision - public.lineitem.l_discount))) = $0) -> Bitmap Heap Scan on lineitem (cost=48251.74..1148849.06 rows=2274821 width=12) Recheck Cond: ((l_shipdate >= '1995-03-01'::date) AND (l_shipdate < '1995-05-30 00:00:00'::timestamp without time zone)) -> Bitmap Index Scan on lineitem_l_shipdate_l_suppkey__idx (cost=0.00..47683.04 rows=2274821 width=0) Index Cond: ((l_shipdate >= '1995-03-01'::date) AND (l_shipdate < '1995-05-30 00:00:00'::timestamp without time zone)) (19 rows) drop view revenue1; DROP VIEW COMMIT; COMMIT