Back to home page

OSCL-LXR

 
 

    


0001 SELECT
0002   i_item_id,
0003   ca_country,
0004   ca_state,
0005   ca_county,
0006   avg(cast(cs_quantity AS DECIMAL(12, 2))) agg1,
0007   avg(cast(cs_list_price AS DECIMAL(12, 2))) agg2,
0008   avg(cast(cs_coupon_amt AS DECIMAL(12, 2))) agg3,
0009   avg(cast(cs_sales_price AS DECIMAL(12, 2))) agg4,
0010   avg(cast(cs_net_profit AS DECIMAL(12, 2))) agg5,
0011   avg(cast(c_birth_year AS DECIMAL(12, 2))) agg6,
0012   avg(cast(cd1.cd_dep_count AS DECIMAL(12, 2))) agg7
0013 FROM catalog_sales, customer_demographics cd1,
0014   customer_demographics cd2, customer, customer_address, date_dim, item
0015 WHERE cs_sold_date_sk = d_date_sk AND
0016   cs_item_sk = i_item_sk AND
0017   cs_bill_cdemo_sk = cd1.cd_demo_sk AND
0018   cs_bill_customer_sk = c_customer_sk AND
0019   cd1.cd_gender = 'F' AND
0020   cd1.cd_education_status = 'Unknown' AND
0021   c_current_cdemo_sk = cd2.cd_demo_sk AND
0022   c_current_addr_sk = ca_address_sk AND
0023   c_birth_month IN (1, 6, 8, 9, 12, 2) AND
0024   d_year = 1998 AND
0025   ca_state IN ('MS', 'IN', 'ND', 'OK', 'NM', 'VA', 'MS')
0026 GROUP BY ROLLUP (i_item_id, ca_country, ca_state, ca_county)
0027 ORDER BY ca_country, ca_state, ca_county, i_item_id
0028 LIMIT 100