Only batchInsert is available in yii2, bacthUpdate
is not available in yii2, how can we do this in yii2 like Codeigniter batchUpdate
?
Use updateAll() on your model.
Customer::updateAll(['status' => 1], 'status = 2');
From Yii 2 documentation
Hope it helps!