次のcakephp mysqlクエリでは、毎回グループ化された行数を見つけるにはどうすればよいですか?
$groupBy = 'PropertyViewer.ip_address';
$this->paginate = array(
"group" => array( $groupBy ),
"order" => array( "PropertyViewer.id desc" ) );
$view_info = $this->paginate( 'PropertyViewer', $conditions );
$this->set( 'view_info', $view_info );`