在yii 1.0中

时间:2018-02-14 13:40:18

标签: yii batch-insert

我想复制一条记录并更新sevaral字段并将其多次粘贴到同一个表中。我想在一个SQL查询中执行此操作,因此我考虑使用batchinsert,但我无法使用bind params方法。

INSERT INTO table (<field>, <field>, <total 100 fields>) VALUES . implode(",", $values);

请帮忙

1 个答案:

答案 0 :(得分:0)

  

YII1中没有任何batchinsert命令

结帐此链接http://www.yiiframework.com/forum/index.php/topic/45623-multi-insert-rows/

你可以用这个来解决你的问题。