如何查询计数?

发布于 2024-10-04 02:51:06 字数 245 浏览 4 评论 0原文

我有一个查询,

Bid.objects.filter(shipment=shipment, status=BidStatuses.ACCEPTED, user=request.user, items__count=0).exists()     

不起作用的部分是 items__count=0。出价与项目具有多对多的关系。我需要检查此出价是否有 0 件商品。我怎样才能做到这一点?

I've got a query,

Bid.objects.filter(shipment=shipment, status=BidStatuses.ACCEPTED, user=request.user, items__count=0).exists()     

The part that doesn't work is items__count=0. Bids have a many-to-many relationship with items. I need to check if this bid has 0 items. How can I do that?

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

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

发布评论

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

评论(2

云裳 2024-10-11 02:51:06

聚合。

http://docs.djangoproject.com/en/1.2/topics/db/聚合/

查看文档,阅读示例,你会找到答案

Aggregation.

http://docs.djangoproject.com/en/1.2/topics/db/aggregation/

see the doc upon, read the sample,you will find the answer

生来就爱笑 2024-10-11 02:51:06

作为记录(已经有一个接受的答案,带有 Django 聚合文档的链接),OP 需要的是:

Bid.objects.annotate(item_num=models.Count('items')).filter(shipment=shipment, status=BidStatuses.ACCEPTED, user=request.user, item_num=0).exists()

For the record (there is already an accepted answer with a link to Django aggregation docs), what OP needs is:

Bid.objects.annotate(item_num=models.Count('items')).filter(shipment=shipment, status=BidStatuses.ACCEPTED, user=request.user, item_num=0).exists()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文