Commit 011cefaf authored by 王志伟's avatar 王志伟

smart_rank 相关的统计指标

parent 656781eb
......@@ -622,8 +622,8 @@ object smart_rank_count {
|on ov.cl_id = final_id.device_id
|where ov.action = "page_view"
|and ov.params['page_name']="welfare_detail"
|and ov.partition_date >='20181001'
|and ov.partition_date <'20181101'
|and ov.partition_date >='20181101'
|and ov.partition_date <'20181201'
|and ov.city_id is not null
|and final_id.device_id is null
""".stripMargin
......@@ -656,7 +656,7 @@ object smart_rank_count {
val meigou_pv_count = sc.sql(
s"""
|select '2018-10' as stat_date,meigou_city,count(device_id) as meigou_pv,count(distinct(device_id)) as meigou_device_num
|select '2018-11' as stat_date,meigou_city,count(device_id) as meigou_pv,count(distinct(device_id)) as meigou_device_num
|from meigou_pv_tongcheng
|where device_city = meigou_city
|group by meigou_city
......@@ -671,8 +671,8 @@ object smart_rank_count {
|select ov.cl_id as device_id,ov.city_id as device_city,ov.params['service_id'] as meigou_id
|from online.tl_hdfs_maidian_view ov left join final_id
|on ov.cl_id = final_id.device_id
|where ov.partition_date >= '20181001'
|and ov.partition_date <'20181101'
|where ov.partition_date >= '20181101'
|and ov.partition_date <'20181201'
|and ov.action = 'welfare_detail_click_message'
|and final_id.device_id is null
""".stripMargin
......@@ -691,7 +691,7 @@ object smart_rank_count {
val zixun_pv_count = sc.sql(
s"""
|select '2018-10' as stat_date,meigou_city,count(device_id) as meigou_zixun,count(distinct(device_id)) as meigou_zixun_device_num
|select '2018-11' as stat_date,meigou_city,count(device_id) as meigou_zixun,count(distinct(device_id)) as meigou_zixun_device_num
|from zixun_meigou_tongcheng
|where device_city=meigou_city
|group by meigou_city
......@@ -707,8 +707,8 @@ object smart_rank_count {
|select first_city,count(distinct(device_id)) as new_device_month
|from online.ml_device_day_active_status
|where active_type != '4'
|and partition_date >='20181001'
|and partition_date <'20181101'
|and partition_date >='20181101'
|and partition_date <'20181121'
|group by first_city
""".stripMargin
)
......
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