我正在研究 cakephp 2.x .. 我的数据库中有两个表都有我正在使用bindModel的用户 ID .. 我的查询工作正常... 我只有一个问题 .. 我想添加条件where 子句
**where userid = $userid**
function getMessages($userid){
$this->bindModel(array(
'belongsTo' => array(
'Contact' => array(
'className' => 'Contact',
'foreignKey' => false,
'conditions' => array(
'Message.user_id = Contact.user_id',
'AND' =>
array(
array('OR' => array(
array('Message.mobileNo = Contact.mobileNo'),
array('Message.mobileNo = Contact.workNo'),
)),
)
),
'type' => 'LEFT',
)
)
), false);
return $this->find('all', array('conditions' => array(),
'fields' => array('Message.mobileNo'
),
'group' => 'Message.mobileNo',
'limit' => 6));
}
我在参数中获取用户 ID ...所以我想添加获得以下结果的条件
message.userid and contact.userid = $userid ...