マルチインサートである次のクエリを実行しようとしています。すべてが正常に見えますが、次のエラーがスローされます。
SQLSTATE[21000]: Cardinality violation: 1241 Operand should contain 1 column(s)
私のコードは次のとおりです
$report_categories=array(1,2,3);
$report_categories=array_unique($report_categories);
$rowPlaces = '(' . implode(', ', array_fill(0, 2, '?')) . ')';
$allPlaces = implode(', ', array_fill(0, count($report_categories), $rowPlaces));
$add_report_types=$this->prepare("
INSERT INTO report_types (
report_id,
category
) VALUES (
" . $allPlaces . "
)");
$i=1;
foreach($report_categories as $category_id){
$add_report_types->bindValue($i, $report_id, PDO::PARAM_INT);
$i++;
$add_report_types->bindValue($i, $category_id, PDO::PARAM_INT);
$i++;
}
$add_report_types->execute();