伙计,我不知道为什么这不起作用,我跟着曼努埃尔一字不差。
我有一个ProductStyles表,它有一个订单栏。假设我有5行。我删除了数字3.我想找到与产品ID匹配的所有行,并迭代它们中的每一行替换#incrementially的顺序。
Productstyle Table
id - product_id - order
我的第一步是按顺序获取与产品ID匹配的所有行,这样我就可以做一个foreach但是我一直得到SQL错误。老实说,除了基本的选择之外,我不太了解SQL。
$query = $this->ProductStyles->find()
->where(['product_id'=> 1 ])
->order(['order' => 'ASC'])
;
//debug($query);
//debug( $query->all() ); //this throws an error
错误讯息:
错误:SQLSTATE [42000]:语法错误或访问冲突:1064 SQL语法中有错误;检查与您的MySQL服务器版本相对应的手册,以便使用“ASC'”附近的正确语法。在第1行
SQL:
//SELECT ProductStyles.id AS `ProductStyles__id`, //ProductStyles.product_id AS
//`ProductStyles__product_id`, ProductStyles.style_id AS //`ProductStyles__style_id`,
//ProductStyles.order AS `ProductStyles__order` FROM product_styles ProductStyles
//WHERE product_id = :c0 ORDER BY order ASC
//die;
$i = 1;
foreach ($query as $row) {
//debug($row); die;
$ps= $this->ProductStyles->get($row->id);
//debug($ps);die;
$ps->order = $i;
$this->ProductStyles->patchEntity($ps,['order'=> $i]);
$this->ProductStyles->save($ps);
$i++;
}
答案 0 :(得分:2)
order
是一个备用词,不允许在不带引号(在这种情况下是非反引号)的方式中使用,它需要以`order`
的形式使用
见
我建议更改列名,这是最简单且不影响性能的修复。另一种选择是启用自动标识符引用,但这会影响性能,并且无法在任何地方应用,请参阅
<强> Cookbook > Database Access & ORM > Database Basics > Identifier Quoting 强>
答案 1 :(得分:2)
order
是SQL中的保留关键字,因此,如果要用作列名,则需要使用引号,如下所示:
SELECT * FROM table ORDER BY `order` ASC
正如您在错误中看到的那样,没有被引用。
也许您必须使用$this->Model->query()
并手动编写查询。
另一种解决方案是将“订单”列更改为其他名称。
希望这有帮助。