欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ORACLE按表字段值的不同统计数量

程序员文章站 2022-08-08 09:44:57
select p.id comperitorid,p.compcorp competitorname, sum(case when c.kindname = 'atm...
select p.id comperitorid,p.compcorp competitorname,
sum(case when c.kindname = 'atm' then c.num else 0 end)  atm,
sum(case when c.kindname = 'crs' then c.num else 0 end)  crs,
sum(case when c.kindname = 'vtm' then c.num else 0 end)  vtm,
sum(case when c.kindname = '清分机' then c.num else 0 end) sorter,
sum(case when c.kindname = '软件' then c.num else 0 end) software,
sum(case when c.kindname = '其它' then c.num else 0 end) other,
m.iscommunication iscommunication
from compproduct c 
join competitor p on c.competitor_id=p.id 
join (select f.custid,t.companyid,t.iscommunication from technologycompany t join technology_flow f on f.id=t.flowid) m on c.competitor_id=m.companyid and c.cust_id=m.custid 
where c.cust_id='7649' 
group by p.id,c.competitor_id,p.compcorp,m.iscommunication