구현 아이디어:
데이터를 일괄 삽입하는 것은 먼저 데이터를 배열에 통합한 다음 배열을 데이터베이스에 직접 삽입하여 한 번에 여러 데이터 조각을 삽입하는 것입니다.
두 가지 경우가 있습니다
첫 번째 경우:
전체 필드 삽입, 즉 이 배열에 있는 각 데이터 조각의 키가 데이터베이스의 필드 이름과 일치하며 각 필드에 해당 키가 있습니다.
use yii\helpers\ArrayHelper; $rows = []; foreach ($models as $model) { if ($model->validate()) { $rows[] = $model->attributes; } } $rows = ArrayHelper::getColumn($models, 'attributes'); $postModel = new Post; Yii::$app->db->createCommand()->batchInsert(Post::tableName(), $postModel->attributes(), $rows)->execute();
두 번째 사례:
Non-full field
$rows[] = [ 'title' => $model->title, 'content' => $model->content, ]; Yii::$app->db->createCommand()->batchInsert(Post::tableName(), ['title', 'content'], $rows)->execute();
관련 권장 사항: yii
위 내용은 yii2에서 일괄적으로 데이터베이스에 데이터를 추가하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!