如何通过 yii 的查询生成器从数据库中提取值?下面是我的代码
$value = Yii::app()->db->createCommand()
->select('sum(totalPoints) as pointsSum')
->from('fndn_UserTotal')
->where('userId =:id', array(':id'=>$userId))
//->where('userId = ' . $userId)
->queryRow();
现在,我在后端的日志中输出它,这是代码。
error_log(print_r($value, true), 3, 'debug.log');
输出将在一个数组内。我怎样才能得到 pointSum ?我尝试在上面的代码中使用 $value->pointsSum 但它不起作用。
我想做一些类似的事情,echo pointSum;