MySQL统计百分比结果

Posted 無玑小姐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL统计百分比结果相关的知识,希望对你有一定的参考价值。

1,不带小数点的百分比

SELECT CONCAT(ROUND(errorTable.errorCount / totalTable.totalCount * 100),‘‘,‘%‘) FROM
        (SELECT COUNT(*) AS totalCount FROM dw_audit WHERE data_level = #{dataLevel} AND task_type = #{taskType}) AS totalTable,
        (SELECT COUNT(*) AS errorCount FROM dw_audit WHERE data_level = #{dataLevel} AND task_type = #{taskType} AND task_state = #{taskState}) AS errorTable

2,带小数点的百分比

CONCAT(ROUND(a.cnt / b.cntSum * 100, 2),‘‘,‘%‘)

以上是关于MySQL统计百分比结果的主要内容,如果未能解决你的问题,请参考以下文章

MySQL 分组统计并列出百分比

[转]perf + 火焰图分析程序性能

perf + Flame Graph火焰图分析程序性能

怎么统计Excel分类所占的百分比

MySQL经典50题目,必须拿下!

代码统计 (uustepcount)