Back to home page

OSCL-LXR

 
 

    


0001 select d_year, s_city, p_brand1, sum(lo_revenue-lo_supplycost) as profit1
0002         from date, customer, supplier, part, lineorder
0003         where lo_custkey = c_custkey
0004                 and lo_suppkey = s_suppkey
0005                 and lo_partkey = p_partkey
0006                 and lo_orderdate = d_datekey
0007                 and c_region = 'AMERICA'
0008                 and s_nation = 'UNITED STATES'
0009                 and (d_year = 1997 or d_year = 1998)
0010                 and p_category = 'MFGR#14'
0011         group by d_year, s_city, p_brand1
0012         order by d_year, s_city, p_brand1