2

我正在研究 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 ...
4

1 回答 1

0

只需将条件分成两行,例如:

'conditions' => array(
    'Contact.user_id' => $userid,
    'Message.user_id = Contact.user_id',
    [...]
 )

但更有意义的方法是保留绑定原样 - 毕竟绑定通常在具有相同 id 的消息用户和联系用户之间 - 并在您的find('all')with中添加特定情况的条件'Message.user_id' => $userid

于 2013-07-13T17:10:44.907 回答