次のような単純なクエリを実行しようとしています。
$tot = Yii::app()->db->createCommand()
->select('sum(field)')
->from('products')
->where('id = ' . $id)
->queryRow();
しかし、$tot は null 値を返します。
次のような単純なクエリを実行しようとしています。
$tot = Yii::app()->db->createCommand()
->select('sum(field)')
->from('products')
->where('id = ' . $id)
->queryRow();
しかし、$tot は null 値を返します。