我正在尝试将SQL_CALC_FOUND_ROWS添加到查询中(请注意这不适用于分页)
请注意我正在尝试将此添加到cakePHP查询中,我目前拥有的代码如下:
return $this->find('all', array(
'conditions' => $conditions,
'fields'=>array('SQL_CALC_FOUND_ROWS','Category.*','COUNT(`Entity`.`id`) as `entity_count`'),
'joins' => array('LEFT JOIN `entities` AS Entity ON `Entity`.`category_id` = `Category`.`id`'),
'group' => '`Category`.`id`',
'order' => $sort,
'limit'=>$params['limit'],
'offset'=>$params['start'],
'contain' => array('Domain' => array('fields' => array('title')))
));
注意'fields'=>array('SQL_CALC_FOUND_ROWS','
这显然不起作用,因为它试图将SQL_CALC_FOUND_ROWS
应用于表格,例如SELECT
{类{1}} {SQL_CALC_FOUND_ROWS {1}}
无论如何都这样做?非常感谢任何帮助,谢谢。
答案 0 :(得分:0)
您可能需要查看cakephp paginate using mysql SQL_CALC_FOUND_ROWS。这个人的语法和你一样,并且对他有用。
如果这没有帮助,您可以随时使用$this->find('count', $params);
(http://book.cakephp.org/view/1020/find-count)或$this->query('YOUR SQL QUERY HERE');
(http://book.cakephp.org/view/1027/query)。
此外,您不应将'joins'
与'contain'
一起使用。根据{{3}}“可能导致一些SQL错误(重复的表),因此您需要使用联接方法作为Containable的替代”。
答案 1 :(得分:0)
也许你可以将你的字段参数设置如下:
'fields'=>array('SQL_CALC_FOUND_ROWS *','COUNT(`Entity`.`id`) as `entity_count`')
答案 2 :(得分:0)
我找到了一种用蛋糕内置功能来实现它的方法。
$dbo = $this->User->getDataSource();
//buildStatement() creates a Standard SQL Statement
$subQuery = $dbo->buildStatement(
array(
'fields' => $fields,
'table' => $dbo->fullTableName($this->User),
'alias' => 'User',
'limit' => null,
'offset' => null,
'joins' => array(),
'conditions' => $conditions,
'order' => null,
'group' => null
),
$this->User
);
//Add the SQL_CALC_FOUND_ROWS part
$subQuery = str_replace('SELECT', 'SELECT SQL_CALC_FOUND_ROWS', $subQuery);
$Users = $this->User->query($subQuery);
//Get FOUND ROWS
$foundRows = $this->User->query("SELECT FOUND_ROWS()");
$count = intval($foundRows[0][0]['FOUND_ROWS()']);
答案 3 :(得分:0)
这是一个非常糟糕的,可怕的黑客,可以将未转义的SQL_CALC_FOUND_ROWS
放入查询中,但它有效:
$categories = $this->Category->find('all', array(
'fields' => array('SQL_CALC_FOUND_ROWS 0.0 AS dummy_field,1', 'Category.*', ...),
'limit' => 42,
...
));
$totalCategories = $this->Category->query('SELECT FOUND_ROWS() as `total_categories`');
所有信用均来自http://mogura.in/blog/2011/06/17/cakephp-1-3-sql_calc_found_rows的“Kani”。