product_shoppingcart
4列のテーブル( )があります:
id, product_id, shoppingcart_id, product_quantity.
KohanaのORMを使用しています。
列に 1 が含まれるすべての行を返す検索クエリを作成したいと考えていますshoppingcart_id
(たとえば)。
私はすでに試しました:
$arr = ORM::factory('product_shoppingcart')->where('shoppingcart_id',$shoppingcartID)->find_all();
しかし、それはうまくいきません。
誰でも私を助けてもらえますか?