1

我正在使用Idiorm - 一个非常简单的 ORM。我正在尝试在单个查询中更新多行。Idiorm 不支持这一点,所以我只剩下n查询或raw_query语句。

我选择后者。

但是,我似乎无法让它工作。他们查询本身并不是很复杂:

UPDATE products 
SET discount_green = some_value 
WHERE category_id = some_other_value 
AND discount_green != yet_another_value
AND has_double_discount != 1

在 Idiorm 语法中,它看起来像这样:

ORM::for_table('products')
        ->raw_query(
        "UPDATE products 
         SET discount_green = :some_value 
         WHERE category_id = :some_other_value  
         AND discount_green != :yet_another_value 
         AND has_double_discount != 1",

        array(
            'some_value' => $some_value,
            'some_other_value' => $some_other_value,
            'yet_another_value' => $yet_another_value,
        )
    );

for_table参数很可能是NULL.

我努力了:

  1. 只需在不绑定参数的情况下执行查询,就像在带有静态参数的整个完整查询中一样 - 不起作用
  2. 不使用 ORM - 工作正常。
  3. 使用问号而不是:符号 - 不起作用。

话虽如此,我可能在这里遗漏了一些明显的东西。非常感谢任何朝着正确方向轻推的行为。

我已经研究过类似的选项raw_execute,也没有太多运气。

这并不特别重要,但所有值都是数字。

4

1 回答 1

1

如果您更喜欢单个查询,raw_execute那么就是要走的路。您可以执行以下操作。

ORM::raw_execute("UPDATE products " .
                 "SET discount_green = :some_value  " .
                 "WHERE category_id = :some_other_value " .
                 "AND discount_green != :yet_another_value  " .
                 "AND has_double_discount != 1",
    array (
      "some_value" => $some_value,
      "some_other_value" => $some_other_value,
      "yet_another_value" => $yet_another_value
    )
);
于 2015-06-09T16:13:33.333 回答