Commit a2aff4c6 authored by 王志伟's avatar 王志伟

计算用户ARPU

parent 6f763de7
...@@ -276,7 +276,7 @@ object ARPU_COM { ...@@ -276,7 +276,7 @@ object ARPU_COM {
val diary_clk_all = sc.sql( val diary_clk_all = sc.sql(
s""" s"""
|select sum(md.gengmei_price) as pay_all,count(distinct(md.device_id)) as pay_people,sum(md.gengmei_price)/count(distinct(md.device_id)) |select sum(md.gengmei_price) as pay_all count(distinct(md.device_id)) as consum_num
|from online.ml_meigou_order_detail md left join final_id |from online.ml_meigou_order_detail md left join final_id
|on md.device_id = final_id.device_id |on md.device_id = final_id.device_id
|where md.status= 2 |where md.status= 2
...@@ -284,6 +284,18 @@ object ARPU_COM { ...@@ -284,6 +284,18 @@ object ARPU_COM {
|and md.partition_date = '20181218' |and md.partition_date = '20181218'
|and md.pay_time is not null |and md.pay_time is not null
|and md.pay_time >= '2018-01-01' |and md.pay_time >= '2018-01-01'
|and md.pay_time <= '2018-01-31'
""".stripMargin
)
diary_clk_all.show(80)
val active_num = sc.sql(
s"""
|select count(device_id) as active_num
|from online.ml_device_month_active_status
|where partition_date = '20180131'
|and first_channel_source_type not in ('yqxiu1','yqxiu2','yqxiu3','yqxiu4','yqxiu5','mxyc1','mxyc2','mxyc3','wanpu','jinshan','jx','maimai','zhuoyi','huatian','suopingjingling','mocha','mizhe','meika','lamabang','js-az1','js-az2','js-az3','js-az4','js-az5','jfq-az1','jfq-az2','jfq-az3','jfq-az4','jfq-az5','toufang1' ,'toufang2','toufang3','toufang4','toufang5','toufang6','TF-toufang1','TF-toufang2','TF-toufang3','TF-toufang4','TF-toufang5','tf-toufang1','tf-toufang2','tf-toufang3','tf-toufang4','tf-toufang5','benzhan','promotion_aso100' ,'promotion_qianka','promotion_xiaoyu','promotion_dianru','promotion_malioaso','promotion_malioaso-shequ' ,'promotion_shike','promotion_julang_jl03')
""".stripMargin """.stripMargin
) )
diary_clk_all.show(80) diary_clk_all.show(80)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment