Mysql
 sql >> Database >  >> RDS >> Mysql

CakePHP:Come posso utilizzare un'operazione HAVING durante la creazione di query con il metodo di ricerca?

Devi metterlo con le condizioni del gruppo. così

$this->find('all', array(
    'conditions' => array(
        'Post.length >=' => 100
    ),
    'fields' => array(
        'Author.id', 'COUNT(*) as Total'
    ),
    'group' => array(
        'Total HAVING Total > 10'
    )
));

Spero che ti aiuti