我有一个product_shoppingcart
包含 4 列的表 ():
id, product_id, shoppingcart_id, product_quantity.
我正在使用 Kohana 的 ORM。
我想编写一个搜索查询,它返回该shoppingcart_id
列包含 1 的所有行(例如)。
我已经尝试过:
$arr = ORM::factory('product_shoppingcart')->where('shoppingcart_id',$shoppingcartID)->find_all();
但这不起作用。
谁能帮帮我?