:Magentoクエリで2つのフィールドを比較するにはどうすればよいですか?私は私がどこかで見つけたこのコードを使用しているすべての私のアクティブな特産品を取得してい
$collection = $this->_addProductAttributesAndPrices($collection)
->addStoreFilter()
->addAttributeToFilter('special_from_date', array('date' => true, 'to' => $todayDate))
->addAttributeToFilter('special_to_date', array('or'=> array(
0 => array('date' => true, 'from' => $todayDate),
1 => array('is' => new Zend_Db_Expr('null')))
), 'left')
->setPageSize($this->get_prod_count())
->setCurPage($this->get_cur_page());
は、今私は、しかし、私はまだ」することができ、特別価格< =価格を持っている製品のみを取得したいですどのようにそれを行う実現する。私はこのページを読んでいる
:http://www.magentocommerce.com/wiki/5_-_modules_and_development/catalog/using_collections_in_magento
と私は成功せず、これを試してみました:あなたの助けのための
->addAttributeToFilter('special_price', array('lt' => 'price'))
感謝を!
第二パラメータ '価格' であります文字列として扱われています – Nasaralla
そうです、それが私が求めている理由です、私はそれらの値を比較する正しい方法を知らない – Shaz