我尝试执行这样的简单查询:
$tot = Yii::app()->db->createCommand()
->select('sum(field)')
->from('products')
->where('id = ' . $id)
->queryRow();
但是 $tot 给我返回空值。
我尝试执行这样的简单查询:
$tot = Yii::app()->db->createCommand()
->select('sum(field)')
->from('products')
->where('id = ' . $id)
->queryRow();
但是 $tot 给我返回空值。