員工業績統計

2021-09-29 01:51:46 字數 2510 閱讀 3847

select cp.khmc 客戶名稱,

case when cp.khh is not null then

(select case when kh.khlx = 0 then '個人'

when kh.jgkhsf = 2 then '金融機構'

else '機構' end from tkhxx kh where kh.id=cp.khh)

else

(select case when tqz.khlx=0 then '個人'

else '機構' end from tqzkhxx tqz where tqz.id=cp.qzkhid)

end 客戶型別,

(select ry.ryxm from tryxx ry where ry.id=cp.ryxx) 客戶經理,

(select (select td.tdmc from ttdbm td where td.id=ry.td) from tryxx ry where ry.id=cp.ryxx) 團隊名稱,

cpdm.cpqc 產品名稱,

cpdm.cpmc 期數,

case when cpdm.cplx=1 then

'集合信託產品'

when cpdm.cplx=2 then

'資金池產品'

end 產品型別,

to_char(to_date(cpdm.clrq,'yyyymmdd'),'yyyy-mm-dd') 成立日期,

zj.jzj 交易金額,

case when cpdm.cplx=1 then

'1'else

to_char((case when cpqx.xmqx=1 then round(cpqx.cpqx/365,7)

when cpqx.xmqx=2 then round(cpqx.cpqx*30/365,7)

when cpqx.xmqx=3 then round(cpqx.cpqx) end),'fm990.0000000')

end 業績係數,

case when cpdm.cplx=1 then

zj.jzj

else

(case when cpqx.xmqx=1 then zj.jzj*round(cpqx.cpqx/365,7)

when cpqx.xmqx=2 then zj.jzj*round(cpqx.cpqx*30/365,7)

when cpqx.xmqx=3 then zj.jzj*cpqx.cpqx end)

end 核算規模

from tcpyy cp,tfp_cpdm cpdm,txsxm_cpqx cpqx,(

select zj.cpyyid,sum(zj.jzje) jzj from tzjjz zj where zj.zjzt=1 and zj.shzt=2 and zj.zjqr=1 group by zj.cpyyid) zj

where cp.id=zj.cpyyid

and cp.cpid=cpdm.id

and cp.yyzt=2

and cp.cpqx=cpqx.id

and cp.yygmje=zj.jzj and cpdm.clrq>=20190401 and cpdm.clrq<=20191010

union all

select

null 客戶名稱,

null 客戶型別,

null 客戶經理,

null 團隊名稱,

null 產品名稱,

'合計' 期數,

null 產品型別,

null 成立日期,

sum(zj.jzj) 交易金額,

null 業績係數,

round(sum(

case when cpdm.cplx=1 then

zj.jzj

else

(case when cpqx.xmqx=1 then zj.jzj*round(cpqx.cpqx/365,7)

when cpqx.xmqx=2 then zj.jzj*round(cpqx.cpqx*30/365,7)

when cpqx.xmqx=3 then zj.jzj*cpqx.cpqx end)

end)) 核算規模

from tcpyy cp,tfp_cpdm cpdm,txsxm_cpqx cpqx,(

select zj.cpyyid,sum(zj.jzje) jzj from tzjjz zj where zj.zjzt=1 and zj.shzt=2 and zj.zjqr=1 group by zj.cpyyid) zj

where cp.id=zj.cpyyid

and cp.cpid=cpdm.id

and cp.cpqx=cpqx.id

and cp.yyzt=2

and cp.yygmje=zj.jzj and cpdm.clrq>=20190401 and cpdm.clrq<=20191010

App地推統計 最全面的業績統計方案

傳統地推環節採用的方案,無非是以下幾種,各種帶來的弊端顯而易見 簡單來說,需要乙個免打包 免填碼 相容android ios 自動統計每個推廣人或地推海報帶來的安裝資料方案。採用openinstall的方案,即可實現免打包 免填地推碼的多渠道地推統計。具體實現方法 一 十分鐘即可完成的整合工作 二 ...

力天創見客流統計系統過濾員工

帶員工過濾解決方案的brickstream人員計數感測器 員工過濾解決方案提高零售購物業務的銷售轉換資料的準確性和可靠性 力天創見客流系統,推出最新一代flir brickstream 3d第2代人員計數感測器。此新版本包含獨特的員工過濾功能,旨在為零售和購物業務提供更準確的客戶流量資料和銷售轉換指...

統計各個部門對應員工漲幅的次數總和

統計各個部門對應員工漲幅的次數總和,給出部門編碼dept no 部門名稱dept name以及次數sum create table departments dept no char 4 not null,dept name varchar 40 not null,primary key dept n...