带Where 子句的Order By Rand()
我需要更快的替代方案
SELECT *
FROM table
WHERE cat='catname'
ORDER BY RAND() LIMIT 6
I need a faster alternative for
SELECT *
FROM table
WHERE cat='catname'
ORDER BY RAND() LIMIT 6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果表很大,应用程序内的改组可能会非常慢。
这个解决方案怎么样:
找出表的大小(有多少行)。然后,以编程方式查找 0 到
number_of_rows
之间的 6 个随机数。用于搜索行的第二个查询:
If the table is very big, shuffling inside your application could be very slow.
What about this solution:
Find out the size of the table (how many rows). than, programmatically find 6 random numbers between 0 and
number_of_rows
.The second query for searching the rows:
更快的方法是不要在查询中使用
RAND()
。在应用程序中随机排列结果。The faster way is don't use
RAND()
in your query. Shuffle your results inside your application.