Magento全体に散らばっていますが、似たような構造を見つけることができます
$select->joinLeft(
array('c' => $couponTable),
'c.customer_id=root.entity_id AND c.rule_id=:rule_id',
array('c.coupon_id')
);
二項演算子=:は何をしますか?
Magento全体に散らばっていますが、似たような構造を見つけることができます
$select->joinLeft(
array('c' => $couponTable),
'c.customer_id=root.entity_id AND c.rule_id=:rule_id',
array('c.coupon_id')
);
二項演算子=:は何をしますか?