我想复制一条记录并更新sevaral字段并将其多次粘贴到同一个表中。我想在一个SQL查询中执行此操作,因此我考虑使用batchinsert,但我无法使用bind params方法。
INSERT INTO table (<field>, <field>, <total 100 fields>) VALUES . implode(",", $values);
请帮忙
答案 0 :(得分:0)
YII1中没有任何batchinsert命令
结帐此链接http://www.yiiframework.com/forum/index.php/topic/45623-multi-insert-rows/
你可以用这个来解决你的问题。