我有一份关于申请人的录取情况的数据汇总如下:
Status Count(status) accepted 2303 rejected 736 unresolved 75
我想有一个接受率由接受数量/总和(接受数量+拒绝数量)你能帮忙吗?非常感谢
mwngjboj1#
在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;
1条答案
按热度按时间mwngjboj1#
在mysql中,您只需执行以下操作: