|
@@ -73,9 +73,9 @@
|
|
|
case when etlVideo.shot_name is null then '' else etlVideo.shot_name end 'shot_name',
|
|
|
case when cmi.create_time is not null then cmi.create_time else '' end 'material_create_time',
|
|
|
sum(report.cost) 'cost',
|
|
|
- sum(report.click) 'click_material',
|
|
|
+ sum(report.click) 'click',
|
|
|
(case when sum(report.show_material)>0 and sum(report.click)>0 then round(sum(report.click)/sum(report.show_material)*100) else 0 end) 'ctr',
|
|
|
- sum(report.show_material) 'show_material',
|
|
|
+ sum(report.show_material) 'material_show',
|
|
|
sum(report.convert_material) 'convert_material',
|
|
|
(case when sum(report.convert_material)>0 and sum(report.click)>0 then round(sum(report.convert_material)/sum(report.click)*100) else 0 end) 'convert_rate',
|
|
|
(case when sum(report.cost) >0 and sum(report.show_material)>0 then round(sum(report.cost)/sum(report.show_material)*1000,2) else 0 end) 'cpm',
|