Yii2.0 批量插入数据

作者: php 发布时间: 2019-08-14 浏览: 1924 次 编辑

方法

Yii::$app->db->createCommand()->batchInsert('user', ['name', 'age'], [  
    ['test01', 30],  
    ['test02', 20],  
    ['test03', 25],  
])->execute();