duanjiao6731 2016-11-07 15:53
浏览 25
已采纳

使用PHP计算ENUM类型列的百分比

In my SQL database I have one table with some items with a column that are ENUM type and has 3 options: 'pending', 'discount', 'received'

How can I print the population percentage of 'received' option, like (In my table I have 40% of 'received' option that are selected) ?

Thank you!

  • 写回答

1条回答 默认 最新

  • doucao1066 2016-11-07 18:25
    关注

    To get the totals for each is pretty simple (assuming your enum column is called 'status' and has a column called id):

    SELECT status, count(id) FROM myTable GROUP BY status;
    

    While it would be possible to write your query to calculate the actual percentages, the simplest thing from there is to do the math yourself

    If you choose to use mysqli to run your query, the code would be something like this:

    // create mysqli connection
    $mysqli = new mysqli("example.com", "user", "password", "database");
    if ($mysqli->connect_errno) {
        echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error;
    }
    
    $res = $mysqli->query("SELECT status, count(id) AS subtotal FROM myTable GROUP BY status");
    $totals = array();
    while ($row = $res->fetch_assoc()) {
        $totals[$row['status']] = $row['subtotal'];
    }
    

    This will give you an array like ['pending' => 100, 'discount' => 200, 'received' => 50]):

    $total = $result['pending'] + $result['discount'] + $result['received'];
    $pctPending = ($result['pending']*100)/$total;
    

    ans so forth. You will of course have to adjust the code to match how your results come back, but the math applies regardless.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部