我是mySQL的新手,因此我只是在寻找一个非常简单的COUNT查询,我没有找到任何真正清晰的在线解释。
我要做的是
根据年龄计算学童组数
答案 0 :(得分:4)
我认为你需要这样的东西:
SELECT age, COUNT(*)
FROM your_table
GROUP BY age
ORDER BY age;
此查询将打印出每个年龄段的年龄和子女数量。
答案 1 :(得分:0)
在Mysql中你可以执行这个sql命令:
"按年龄选择儿童组的计数(nr_children)";
或在php中:
$servername = "localhost";
$username = "username";
$password = "password";
// Create connection
$conn = new mysqli($servername, $username, $password);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "select * from children group by age";
$children = $conn->query($sql);
$nr_child = mysqli_num_rows($children);
echo $nr_child;