0

マルチインサートである次のクエリを実行しようとしています。すべてが正常に見えますが、次のエラーがスローされます。

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();
4

1 に答える 1

2

クエリの値の部分に括弧を付けずに試してみることをお勧めします。

$add_report_types=$this->prepare("
    INSERT INTO report_types (
        report_id,
        category
    ) VALUES " . $allPlaces);

私がそれを正しく理解している場合は$allPlaces、次のような文字列を含める必要があります。

(?, ?), (?, ?), (?, ?)

したがって、クエリを次のように表示する必要があります。

INSERT INTO report_types (
    report_id,
    category
) VALUES (?, ?), (?, ?), (?, ?);

http://dev.mysql.com/doc/refman/5.5/en/insert.html

于 2013-01-20T21:42:15.683 に答える