gpt4 book ai didi

php - Yii:使用 GROUP BY 子句

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

我想使用 Yii 实现 SQL 的 GROUP BY 子句。在这里,我遇到了仅返回第一行而不是所有行的问题。

    $connection = Yii::app()->db; 
$sql = "SELECT group_name FROM `authitem` GROUP BY group_name";
$command = $connection->createCommand($sql);
$row = $command->queryRow();
print_r($row);
$res = array();
foreach ($row as $key => $val) {
$res[] = array('label' => $key, 'value' => $val);
}
print_r($res);

最佳答案

而不是

 $row = $command->queryRow();

尝试这样,

 $row = $command->queryAll();

关于php - Yii:使用 GROUP BY 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29338387/

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