gpt4 book ai didi

php - 选择数据库中条目最多的类别

转载 作者:行者123 更新时间:2023-11-29 00:51:12 25 4
gpt4 key购买 nike

我已经到了可以显示每个类别中有多少条目的计数的阶段。它回显的数据是这样的

There are 6 in the category number1
There are 4 in the category number2
There are 1 in the category number4
There are 1 in the category number5
There are 1 in the category number8

但是我只想显示最受欢迎的类别。因此,例如 - 最受欢迎的类别编号是“”和“”条目

代码:

- $count_query_v1 = "SELECT categoryNo, COUNT(entryNo)
FROM entries
GROUP by categoryNo;
";

$answer = mysql_query($count_query_v1) or die(mysql_error());

// Print out result
while($row = mysql_fetch_array($answer)){
echo "There are ". $row['COUNT(entryNo)'] ."in the category number". $row['categoryNo'] ." ;

}

我该怎么做?

最佳答案

定义“最受欢迎”。如果您的意思是最受欢迎的类别是包含最多条目的单个类别,那么这将是您的查询:

SELECT categoryNo, COUNT(entryNo) as numEntries
FROM entries
GROUP by categoryNo
ORDER by numEntries DESC
LIMIT 1

关于php - 选择数据库中条目最多的类别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8513282/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com