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

我有一个超过800K行的表.我想要随机获得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:作为一个大而且不断增长的表,需要快速查询

最佳答案 明显.没有任何行符合where条件.

另一种方法是完全免除where子句:

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

这是一种提高效率的方法(并且表上的索引(类型)有帮助):

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”是任意的.但它通常应该至少获取四行.

点赞