在 SQL 数据库中选择随机行

发布于 2024-09-03 14:39:52 字数 180 浏览 4 评论 0原文

我想在我的数据库中选择一个随机行。我在网站上看到了这个解决方案:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

捎一片雪花 2024-09-10 14:39:52

这是。您必须

SELECT COUNT(*) FROM `table`;

使用 PHP 函数 mt_rand() 计算行数,获取从 1 到 $count 的随机数,并通过查询获取它:

SELECT `column` FROM `table` LIMIT $rand, 1

It is. You have to count rows number with

SELECT COUNT(*) FROM `table`;

After this with php function mt_rand() get the random from 1 to $count and get it with query:

SELECT `column` FROM `table` LIMIT $rand, 1
小耗子 2024-09-10 14:39:52

There's a lot more discussion of this subject, including performance implications and strategies for different DBMSs, in this question.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文