Wednesday 11 October 2017

Yii2 Sum Column in Active Record



To get sum of column using active record,
$query = Item::find();
            $query->where(['item_code' => $item_code]);
            $cost = $query->sum('lot_qty');

No comments:

Post a Comment