gpt4 book ai didi

php - 我想要 count 的值并想在其他查询中使用它。这怎么可能?

转载 作者:行者123 更新时间:2023-11-29 11:38:34 26 4
gpt4 key购买 nike

这是我的查询:

$qry1 = "SELECT COUNT('name') FROM `brands` WHERE `catagory_id` = '".$id."';";
$res = mysqli_query($conn, $qry1);

我想要计数值并希望在另一个查询中使用它。这怎么可能?

最佳答案

两步:1. 为 count(name) 计算的值指定一个有意义的名称,total 例如:2. 获取结果的第一行并使用名称 total

访问 1 中的值
$qry1 = "SELECT COUNT(name) as total FROM `brands` WHERE `catagory_id` = '".$id."';";
$count = $mysqli->query($conn, $qry1)->fetch_object()->total;

关于php - 我想要 count 的值并想在其他查询中使用它。这怎么可能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36219829/

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