LIMIT并不总是返回相同的行数

时间:2016-07-28 02:21:04

标签: php mysql yii

我的表格超过800K rows。我想要随机获得4个ID。我的查询工作得很快,但它有时给我一个,有时两个,有时没有给出结果。知道为什么吗?

以下是查询:

select * from table
  where (ID % 1000) = floor(rand() * 1000)
  AND `type`='5'
  order by rand()
  limit 4

type='5'只有1603行,并不总是给我4行。当我将其更改为type='11'时,它可以正常工作。知道如何解决这个问题吗?

这是我在Yii的代码

$criteria = new CDbCriteria();
$criteria->addCondition('`t`.`id` % 1000 = floor(rand() * 1000)');
$criteria->compare('`t`.`type`', $this->type);
$criteria->order = 'rand()';
$criteria->limit = 4;

return ABC::model()->findAll($criteria);

PS:作为一个庞大且不断增长的表,需要快速查询

2 个答案:

答案 0 :(得分:1)

显然。没有任何行符合where条件。

另一种方法是完全免除where条款:

select t.*
from table t
where `type` = 5
order by rand()
limit 4;

这是一种提高效率的方法(以及table(type)上的索引帮助):

select t.*
from table t cross join
     (select count(*) as cnt from table t where type = 5) x
where `type` = 5 and
      rand() <= 5*4 / cnt
order by rand()
limit 4;

“5”是任意的。但它通常应该至少获取四行。

答案 1 :(得分:1)

每行都重复了的rand函数,因此您获得泊松分布的匹配数。可能是0,可能是1,可能是312 - 具有不同的概率。