我正在使用Laravel PHP框架的Fluent查询构建器将行从一个表移动到另一个表。正在使用PDO。在使用原始查询DB::query()
时,我收到错误:
错误
SQLSTATE[21S01]: Insert value list does not match column list:
1136 Column count doesn't match value count at row 1
SQL: INSERT IGNORE into listings_archive VALUES (?, ?)
查询
// Get rows from first table
$rows = DB::table('table_1')
->where('id', '>', '12345')
->get();
// Copy rows to second table
foreach($rows as $row) {
$listing = get_object_vars($row);
DB::query('INSERT IGNORE into table_2 VALUES (?, ?)', $row);
}
var_dump $ row
array(39) {
["id"]=>
string(7) "2511877"
["name"]=>
string(2) "AB"
["color"]=>
NULL
["type"]=>
NULL
...
导致错误的原因是什么以及如何解决?我尝试用NULL
删除元素但仍然得到相同的错误!
这可能是将数组传递到DB::query()
的问题。这些非常简单的例子给出了类似的错误:
$row = array('id', 123);
DB::query('INSERT IGNORE into table_2 VALUES (?, ?)', $row);
和
$row = array('id' => 123);
DB::query('INSERT IGNORE into table_2 VALUES (?, ?)', $row);
错误
SQLSTATE[21S01]: Insert value list does not match column list:
1136 Column count doesn't match value count at row 1
答案 0 :(得分:0)
列数与列数不匹配。 如果您没有指定哪些列,则默认为all,因此您需要类似
的内容Insert IGNORE into table_2(Column1,Column2) Values (?, ?)
Column1,Column2,是要将Table_1中的值放入table_2的两列的名称。
答案 1 :(得分:0)
有相同的错误消息,但我在php中使用了mysqli
通过一些修补解决:
$stmt = $con->prepare("INSERT INTO table2
(field1, field2, ..., )
SELECT
field1, field2, ...,
FROM
table1 WHERE field = ? ");