I'm trying to achieve this query in CakePHP (1.3, if that's relevant):
select * from releases r join formats f on r.id = f.release_id
where r.default_upc = f.bar_code
I was hoping I could do something in the Release model like:
var $hasOne = array('Format'=>array(
'conditions' => array('Release.default_upc'=>'Format.bar_code')
));
Unfortunately this just results in a null Format; evidently 'Format.bar_code' is not yet available at the time the query is made.
What's the quickest route to getting the results I want?