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 ogg dd trandata 报错
  • ¥15 高缺失率数据如何选择填充方式
  • ¥50 potsgresql15备份问题
  • ¥15 Mac系统vs code使用phpstudy如何配置debug来调试php
  • ¥15 目前主流的音乐软件,像网易云音乐,QQ音乐他们的前端和后台部分是用的什么技术实现的?求解!
  • ¥60 pb数据库修改与连接
  • ¥15 spss统计中二分类变量和有序变量的相关性分析可以用kendall相关分析吗?
  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错