Yii2之批量插入数据

请看示意代码:

Yii::$app->db->createCommand()->batchInsert('user', ['name', 'age'], [
    ['Tom', 30],
    ['Jane', 20],
    ['Linda', 25],
])->execute();

你可能感兴趣的:(Yii)