我总结了有关申请人提出申请状态的数据如下:
Status Count(status)
accepted 2303
rejected 736
unresolved 75
我想接受接受率/接受金额(接受的数量+拒绝的数量)
你可以帮忙吗?非常感谢提前答案 0 :(得分:1)
在MySQL中,您可以这样做:
select (sum(case when status = 'accepted' then cnt else 0 end) /
sum(case when status in ('accepted', 'rejected') then cnt else 0 end)
) as ratio
from t;