在cakephp中加入别名表中的顺序

时间:2017-04-26 14:26:47

标签: php cakephp join

$this->Message->find('all', array(
    'joins' => array(
        array(
            'table' => 'users',
            'alias' => 'UserJoin',
            'type' => 'INNER',
            'conditions' => array(
                'UserJoin.id = Message.from'
            ),
            **'order'=>'UserJoin.datetime DESC',
            'limit'=>1**
        )
    ),
    'conditions' => array(
        'Message.to' => 4
    ),
    'fields' => array('UserJoin.*', 'Message.*'),
    'order' => 'Message.datetime DESC'
));

我正在尝试添加加入别名表的顺序,但没有得到结果

0 个答案:

没有答案