基于 Django 查询集中外键字段的 .count() 进行过滤
Posted
技术标签:
【中文标题】基于 Django 查询集中外键字段的 .count() 进行过滤【英文标题】:Filtering based on .count() of a forgein key field in Django querysets 【发布时间】:2011-12-25 12:12:20 【问题描述】:所以我有一些像这样的 Django 1.3 模型:
class Type(models.Model):
is_bulk = models.BooleanField()
class Component(models.Model):
parent = models.ForeignKey(Type)
有些 Type
有 0 个 Component
,有些有 1 或 2,等等。我如何编写一个 QuerySet 来过滤所有具有 > 0 个组件的类型。即排除具有 0 个组件的类型?
【问题讨论】:
【参考方案1】:from django.db.models import Count
Type.objects.annotate(component_count=Count('component')).exclude(component_count=0)
【讨论】:
以上是关于基于 Django 查询集中外键字段的 .count() 进行过滤的主要内容,如果未能解决你的问题,请参考以下文章
给springmvc接口快速增加字段检索,外键从表检索,外键从表查询的searchdb注解