Pages::setGroup($group)
Version 2022.2
Add limit to query
Version 2022.2
Add limit to query
$this
Get list of clients that have new projects
$this->get('pages','project')
->addWhere('status','New')
->setGroup('client')
->select(Array(
'client' => '',
'pcs' => 'COUNT',
'first' => 'MIN(date)',
'last' => 'MAX(date)'
));