gpt4 book ai didi

php - 如何使用组函数显示 COUNT 查询

转载 作者:行者123 更新时间:2023-11-29 06:20:01 25 4
gpt4 key购买 nike

我是 mySQL 的新手,因此我只是在寻找一个非常简单的 COUNT 查询,我还没有在网上找到任何真正清晰的解释。

我想做的是找出有多少教师属于同一个国家或地区,但在运行时只显示县名而不是教师人数,我需要这样的输出

城市名称印度 3美国 5英国 2

我的代码是

<body>
<?php
include("connection.php");
?>
<table border="1px">
<tr>
<td>Country</td>
<td>'count( teachercode )</td>
</tr>
<?php
$query=mysql_query("SELECT Country, count(teachercode) from teacher group by Country") or die (mysql_error());
?>
<?php
while($row=mysql_fetch_array($query)) {?>
<tr>
<td>
<a href="student.php?sr=<?php echo $row['sr'];?>">
<?php echo $row['Country']?></a> </td><td> <?php echo $row['count( teachercode )']?></td>
</tr>
<?php }
?>
</table>
</body>
</html>

请帮帮我

最佳答案

使用别名。例如。 SELECT count(teachercode) AS teachCodeCount 然后使用别名在数组中访问它,例如$row['teachCodeCount']

关于php - 如何使用组函数显示 COUNT 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33759811/

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