嗨,请查看附图,我有sql网格上的数据,我想获得首选输出。任何帮助将非常感谢。非常感谢你。
答案 0 :(得分:2)
在case
表达式
SELECT company_code,
sum(case when Status = 'FOR APPROVAL' then 1 else 0 end) FOR_APPROVAL,
sum(case when Status = 'FOR AUTHORIZATION' then 1 else 0 end) FOR_AUTHORIZATION
FROM table
GROUP BY company_code
答案 1 :(得分:0)