doupeizheng3918 2018-08-04 12:16
浏览 30
已采纳

返回并比较最高计数php mysql的值

Right, I'll be specific as possible here - I'll first outline what I need, then what I've done - I can usually plod on with these so bear in mind I'm only asking as my brain is fried!

  1. I have a table in my database - we only need to know it has these fields (gender - male or female, layout - 0 or 1)

  2. I want to find the most used layout (0 or 1) for males - I've done this by:

    $result = mysqli_query($conn, "SELECT layout,COUNT(*) as num FROM style where gender = 'male' group by layout order by num DESC LIMIT 1" );

  3. I want to check if the returned result (so most frequent) is 0 or 1, so i can use that in an IF statement (so far i'm just using an echo to test)

I'm sorry if this if very trivial, or if i've missed anything out - if you need any extra info let me know.

  • 写回答

3条回答 默认 最新

  • dpbe81245 2018-08-04 12:55
    关注

    Your code is fine for determining whether males prefer layout 0 or 1, you just need to look at the output value:

    $result = mysqli_query($conn, "SELECT layout, COUNT(*) as num 
                                   FROM style
                                   WHERE gender = 'male' 
                                   GROUP BY layout 
                                   ORDER BY num DESC 
                                   LIMIT 1" );
    $row = mysqli_fetch_assoc($result);
    if ($row['layout'] == 0)
        echo "males prefer layout 0";
    else
        echo "males prefer layout 1";
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教