Commit 61812726 authored by 魏艺敏's avatar 魏艺敏

push codes

parent 70774155
...@@ -8,7 +8,7 @@ SELECT partition_day as `日期` ...@@ -8,7 +8,7 @@ SELECT partition_day as `日期`
,nvl(concat(round(sum(click_pv)/sum(exp_pv)*100,2),'%'),0) as `历史ctr` ,nvl(concat(round(sum(click_pv)/sum(exp_pv)*100,2),'%'),0) as `历史ctr`
,nvl(concat(round(sum(page_pv_20s)/sum(exp_pv)*100,2),'%'),0) as `历史优秀浏览点击ctr` ,nvl(concat(round(sum(page_pv_20s)/sum(exp_pv)*100,2),'%'),0) as `历史优秀浏览点击ctr`
,nvl(round(avg(avg_page_stay),2),0) as `历史平均阅读时长(s)` ,nvl(round(avg(avg_page_stay),2),0) as `历史平均阅读时长(s)`
FROM pm.tl_pm_userpost_d_v2 FROM pm.tl_pm_userpost_old_d_v3
where partition_day>='20201102' where partition_day>='20201102'
group by partition_day group by partition_day
order by `日期` order by `日期`
\ No newline at end of file
...@@ -54,7 +54,7 @@ SELECT post_id as `更美优选帖子id` ...@@ -54,7 +54,7 @@ SELECT post_id as `更美优选帖子id`
,nvl(favor_num,0) as `历史收藏` ,nvl(favor_num,0) as `历史收藏`
,nvl(share_num,0) as `历史转发` ,nvl(share_num,0) as `历史转发`
,nvl(avg_page_stay,0) as `历史平均阅读时长(s)` ,nvl(avg_page_stay,0) as `历史平均阅读时长(s)`
FROM pm.tl_pm_userpost_d_v2 FROM pm.tl_pm_userpost_old_d_v3
where partition_day=regexp_replace(DATE_SUB(current_date,1) ,'-','') where partition_day=regexp_replace(DATE_SUB(current_date,1) ,'-','')
order by `前10日曝光` desc order by `前10日曝光` desc
......
...@@ -20,7 +20,7 @@ SELECT post_id as `更美优选帖子id` ...@@ -20,7 +20,7 @@ SELECT post_id as `更美优选帖子id`
,nvl(exp_pv,0) as `历史曝光` ,nvl(exp_pv,0) as `历史曝光`
,nvl(page_pv,0) as `历史浏览pv` ,nvl(page_pv,0) as `历史浏览pv`
,nvl(avg_page_stay,0) as `历史平均阅读时长(s)` ,nvl(avg_page_stay,0) as `历史平均阅读时长(s)`
FROM pm.tl_pm_userpost_d_v2 FROM pm.tl_pm_userpost_old_d_v3
where partition_day=regexp_replace(DATE_SUB(current_date,1) ,'-','') where partition_day=regexp_replace(DATE_SUB(current_date,1) ,'-','')
order by `前10日曝光` desc order by `前10日曝光` desc
......
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