BEGIN; BEGIN select n_name, sum(l_extendedprice * (1 - l_discount)) as revenue from customer, orders, lineitem, supplier, nation, region where c_custkey = o_custkey and l_orderkey = o_orderkey and l_suppkey = s_suppkey and c_nationkey = s_nationkey and s_nationkey = n_nationkey and n_regionkey = r_regionkey and r_name = 'AMERICA' and o_orderdate >= date '1995-01-01' and o_orderdate < date '1995-01-01' + interval '1 year' group by n_name order by revenue desc; n_name | revenue ---------------------------+------------------ CANADA | 536375724.102583 BRAZIL | 536321978.442028 PERU | 529798167.508074 ARGENTINA | 529517215.43435 UNITED STATES | 522550437.222528 (5 rows) COMMIT; COMMIT