在 SQL 数据库中选择随机行
我想在我的数据库中选择一个随机行。我在网站上看到了这个解决方案:
SELECT column FROM table
ORDER BY RAND()
LIMIT 1
This SQL query run 但有人告诉我这是一个非性能查询。还有其他解决方案吗?
谢谢
I would like to select a random line in my database. I saw this solution on a website:
SELECT column FROM table
ORDER BY RAND()
LIMIT 1
This SQL query run but someone said me that it was a non performant query. Is there another solution ?
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是。您必须
使用 PHP 函数 mt_rand() 计算行数,获取从 1 到 $count 的随机数,并通过查询获取它:
It is. You have to count rows number with
After this with php function mt_rand() get the random from 1 to $count and get it with query:
在 这个问题。
There's a lot more discussion of this subject, including performance implications and strategies for different DBMSs, in this question.