モジュールを作成し、コアの書き込みおよび読み取り関数を使用して、条件付きのデータベース値を挿入、更新、削除、または選択したいのですが、SQL を使用せずにそれを行うにはどうすればよいですか? 例: $customer_id=123 モデル=(紹介/紹介)
選択する
$collection3 = Mage::getModel('referral/referral')->getCollection();
$collection3->addFieldToFilter('customer_id', array('eq' => $customer_id));
foreach($collection3 as $data1)
{
$ref_cust_id.= $data1->getData('referral_customer_id');
}
入れる
$collection1= Mage::getModel('referral/referral');
$collection1->setData('customer_id',$customer_id)->save();
DELETE,UPDATE(条件付き)=???