KP工作枱數據漏斗

從 qingwei personal wiki
於 2018年11月12日 (一) 08:29 由 Qingwei (對話 | 貢獻) 所做的修訂 (SQL配置)
跳到: 導覽搜尋

描述

aone

便簽

接口

external/kpwork/overview

sql

  • terminal_type: PC, TOTAL, WS
SELECT
    stat_date,
    imps_cnt_1d_027,
    clk_cnt_1d_092,
    uv_1d_169,
    fb_cnt_1d_013,
    fst_reply_rate_1m_003
FROM
    dwp_en_dm_comp_term_catelv2_eff_d
where
    stat_date>="2018-10-8"
    and stat_date<="2018-10-9"
    and statistic_type="ALL"
    and admin_mbr_seq="14"
    and terminal_type="PC"
    and is_main_cate="Y"
    and cate_lv2_id=100010695

oneService

參數

  • statDate (根據statisticsType校驗,返回相應錯誤) 
  • terminalType
  • statisticsType
  • adminMemberSeq

SQL配置

  • external.kpwork.overview
select
    ${returnFields}    
from
    <if test='statisticsType == "day"'> 
        dwp_en_dm_comp_term_catelv2_eff_d
    </if>  
    <if test='statisticsType == "week"'> 
        dwp_en_dm_comp_term_catelv2_eff_w
    </if>
    <if test='statisticsType == "month"'> 
        dwp_en_dm_comp_term_catelv2_eff_m
    </if>         
where
    stat_date >= #{prevDate}
    and stat_date &amp;lt;= #{statDate}
    and admin_mbr_seq = #{adminMemberSeq}
    and statistic_type = #{statisticType}
    and terminal_type = #{terminalType}
    and is_main_cate = #{isMainCate}
    and cate_lv2_id = #{cateLv2Id}