码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2017-06-27 20:02:04      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:ati   end   pos   atm   ase   ora   comm   tracking   track   

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 

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

标签:ati   end   pos   atm   ase   ora   comm   tracking   track   

原文地址:http://www.cnblogs.com/lxjshuju/p/7086628.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!