如何使用 django 从数据库(MySQL)中选择 30 个唯一的随机值?

发布于 2024-11-04 10:51:57 字数 281 浏览 1 评论 0原文

我读过这个问题:在Django,如何从数据库中随机选择100条记录?
并尝试使用 Content.objects.all().order_by('?')[:30],但这会产生一些重复的项目。那么我如何从数据库中选择 30 个唯一随机值呢?

I've read this question: In Django, how do I select 100 random records from the database?
And tried to use Content.objects.all().order_by('?')[:30], but this will produce some duplicate items. So how could I select 30 unique random values from database?

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

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

发布评论

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

评论(1

多情癖 2024-11-11 10:52:02

如果数据库中有可管理数量的条目(即不是数千),那么这将起作用,即使它访问数据库两次,它也可能比 order_by('?') 高效得多。

import random
content_pks = Content.objects.values_list('pk', flat=True)
selected_pks = random.sample(content_pks, 30)
content_objects = Content.objects.filter(pk__in=selected_pks)

If you have a manageable number of entries in the database (ie not thousands), this will work, and even though it hits the db twice it will probably be much more efficient than order_by('?').

import random
content_pks = Content.objects.values_list('pk', flat=True)
selected_pks = random.sample(content_pks, 30)
content_objects = Content.objects.filter(pk__in=selected_pks)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文