选择随机行

发布于 2024-10-17 22:00:33 字数 93 浏览 1 评论 0原文

大家好, 我的要求很简单。我想从表中选择随机行。

例如我的表有 10 行,我想随机选择任意三行。psql 有什么办法吗?

Hi all,
My requirement is simple.I want to select random rows from a table.

For example my table having 10 rows I want to select any three rows randomly.Is there any way in psql.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

最美不过初阳 2024-10-24 22:00:33

使用随机函数。

SELECT * FROM tablename ORDER BY random() LIMIT 3;

Use the random function.

SELECT * FROM tablename ORDER BY random() LIMIT 3;
煮酒 2024-10-24 22:00:33

请注意,一旦您的表增长,“按随机/限制排序”方法将会很慢,因为它需要整个表扫描。

请参阅http://blog.rhodiumtoad .org.uk/2009/03/08/selecting-random-rows-from-a-table/ 获取替代解决方案。

Please be aware that once your table grows the "order by random/limit" approach will be slow, since it requires a whole table scan.

See http://blog.rhodiumtoad.org.uk/2009/03/08/selecting-random-rows-from-a-table/ for an alternative solution.

混浊又暗下来 2024-10-24 22:00:33

试试这个!

$ select * from table_name order by random() limit 3 ;

Try this !

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