我正在研究 cakephp 并尝试实现 join 。或内部连接查询......我现在正在做的是这个
$this->bindModel(array(
'belongsTo' => array(
'Contact' => array(
'className' => 'Contact',
'foreignKey' => false,
'conditions' => array(
'Message.user_id = Contact.user_id',
'Message.mobileNo = Contact.mobileNo'
)
)
)
), false);
return $message_details = $this->find('all', array(
'conditions' => array(),
'fields' => array('DISTINCT mobileNo')
));
此查询正在执行LEFT JOIN表.. 我想要的是两个表之间的连接或内连接