Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. with ws as
  2.   (select d_year AS ws_sold_year, ws_item_sk,
  3.     ws_bill_customer_sk ws_customer_sk,
  4.     sum(ws_quantity) ws_qty,
  5.     sum(ws_wholesale_cost) ws_wc,
  6.     sum(ws_sales_price) ws_sp
  7.    from test.web_sales
  8.    left join test.web_returns on wr_order_number=ws_order_number and ws_item_sk=wr_item_sk
  9.    join test.date_dim on ws_sold_date_sk = d_date_sk
  10.    where /* --removed Cloudera cheat ws_sold_date_sk between 2451911 and 2452275
  11.    and */ wr_order_number is null
  12.    group by d_year, ws_item_sk, ws_bill_customer_sk
  13.    ),
  14. cs as
  15.   (select d_year AS cs_sold_year, cs_item_sk,
  16.     cs_bill_customer_sk cs_customer_sk,
  17.     sum(cs_quantity) cs_qty,
  18.     sum(cs_wholesale_cost) cs_wc,
  19.     sum(cs_sales_price) cs_sp
  20.    from test.catalog_sales
  21.    left join test.catalog_returns on cr_order_number=cs_order_number and cs_item_sk=cr_item_sk
  22.    join test.date_dim on cs_sold_date_sk = d_date_sk
  23.    where /* --removed Cloudera cheat cs_sold_date_sk between 2451911 and 2452275
  24.    and */ cr_order_number is null
  25.    group by d_year, cs_item_sk, cs_bill_customer_sk
  26.    ),
  27. ss as
  28.   (select d_year AS ss_sold_year, ss_item_sk,
  29.     ss_customer_sk,
  30.     sum(ss_quantity) ss_qty,
  31.     sum(ss_wholesale_cost) ss_wc,
  32.     sum(ss_sales_price) ss_sp
  33.    from test.store_sales
  34.    left join test.store_returns on sr_ticket_number=ss_ticket_number and ss_item_sk=sr_item_sk
  35.    join test.date_dim on ss_sold_date_sk = d_date_sk
  36.    where /* --removed Cloudera cheat ss_sold_date_sk between 2451911 and 2452275
  37.    and */ sr_ticket_number is null
  38.    group by d_year, ss_item_sk, ss_customer_sk
  39.    )
  40. select
  41. ss_customer_sk,
  42. round(ss_qty/(coalesce(ws_qty+cs_qty,1)),2) ratio,
  43. ss_qty store_qty, ss_wc store_wholesale_cost, ss_sp store_sales_price,
  44. coalesce(ws_qty,0)+coalesce(cs_qty,0) other_chan_qty,
  45. coalesce(ws_wc,0)+coalesce(cs_wc,0) other_chan_wholesale_cost,
  46. coalesce(ws_sp,0)+coalesce(cs_sp,0) other_chan_sales_price
  47. from ss
  48. left join ws on (ws_sold_year=ss_sold_year and ws_item_sk=ss_item_sk and ws_customer_sk=ss_customer_sk)
  49. left join cs on (cs_sold_year=ss_sold_year and cs_item_sk=cs_item_sk and cs_customer_sk=ss_customer_sk)
  50. where coalesce(ws_qty,0)>0 and coalesce(cs_qty, 0)>0 and ss_sold_year=2001
  51. order by
  52.   ss_customer_sk,
  53.   ss_qty desc, ss_wc desc, ss_sp desc,
  54.   other_chan_qty,
  55.   other_chan_wholesale_cost,
  56.   other_chan_sales_price,
  57.   round(ss_qty/(coalesce(ws_qty+cs_qty,1)),2)
  58. limit 100;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement